#! /bin/sh
#
# debian.prerm
#		Remove the ssl module.
#
# Version:	debian.prerm  1.10  28-Nov-2000  miquels@cistron.nl
#

pkg=libapache-auth-radius
apa=/etc/apache
exa=/usr/share/doc/$pkg/examples

remove()
{
	#
	#	Remove the mod_auth_radius line from /etc/apache/httpd.conf
	#
	return 0
}

umask 022
case "$1" in
	upgrade|remove)
		[ -L /usr/doc/libapache-auth-radius ] &&
			rm -f /usr/doc/libapache-auth-radius
		;;
esac
case "$1" in
	remove)
		remove
		exit 0
		;;
	upgrade|remove-in-favour|deconfigure-in-favour)
		exit 0
		;;
	*)
		echo "$0: unknown action \"$1\""
		exit 0
		;;
esac

exit 0

