#!/bin/sh -e

action="$1"

. /usr/share/debconf/confmodule
db_version 2.0

umask 022

# remove the old symlink if it exists
if [ -h /opt/aprsc/lib64 ]; then
	rm /opt/aprsc/lib64
fi

exit 0

