aboutsummaryrefslogtreecommitdiffstats
path: root/debian/plptools.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/plptools.postrm')
-rw-r--r--debian/plptools.postrm25
1 files changed, 25 insertions, 0 deletions
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