You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
344 B
16 lines
344 B
#!/bin/sh
|
|
|
|
# purge the config file which is created in the postinst script
|
|
if [ "$1" = purge ] ; then
|
|
rm -f /etc/popularity-contest.conf
|
|
fi
|
|
|
|
if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
|
|
# Source debconf library.
|
|
. /usr/share/debconf/confmodule
|
|
# Remove my changes to the db.
|
|
db_purge
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
|