diff options
Diffstat (limited to 'debian/plptools.postrm')
-rw-r--r-- | debian/plptools.postrm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/plptools.postrm b/debian/plptools.postrm deleted file mode 100644 index 6b5752e..0000000 --- a/debian/plptools.postrm +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh -# postrm script for plptools -# -# see: dh_installdeb(1) - -set -e - -case "$1" in - remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - purge) - rm -f /etc/plptools.conf - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 0 - ;; - -esac - -#DEBHELPER# - -exit 0 |