#!/bin/sh

KEEP="/var/lib/deborphan/keep"
KEEPDIR="/var/lib/deborphan"

if [ "$1" = "purge" ] ; then
	if [ -f $KEEP ] ; then
		# Currently I think purge is purge. Don't annoy the admin.
		# 
		# echo "deborphan's list of wanted packages still exists.  Do you"
		# echo -n "want to remove this file?  ($KEEP) [Y/n] "
		# read answer
		# case $answer in
		# 	y|Y|Yes|YES|yes|"")
				rm -f $KEEP
				rmdir $KEEPDIR
		# 		;;
		# 	*)
		# 		echo "Not removing $KEEP."
		# 		;;
		# esac
	fi
fi

# Here debhelper should add it's stuff if any:
#DEBHELPER#


# vim: set ts=2:
