From 07eb049b002f2144e9f5c73f08865831d7fb5c89 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Sun, 6 Jul 2014 23:54:25 +0100 Subject: Add Debianization files from Debian package 1.0.9-2.4 --- debian/plptools.postrm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 debian/plptools.postrm (limited to 'debian/plptools.postrm') diff --git a/debian/plptools.postrm b/debian/plptools.postrm new file mode 100644 index 0000000..fae3231 --- /dev/null +++ b/debian/plptools.postrm @@ -0,0 +1,25 @@ +#! /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 /etc/default/plptools + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 0 + ;; + +esac + +#DEBHELPER# + +exit 0 -- cgit v1.2.3