aboutsummaryrefslogtreecommitdiff
path: root/etc/debian/postrm.ex
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-08-25 08:26:44 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-08-25 08:26:44 +0200
commit98768c0ca446f3202ce4d3e79eb68e463f11c156 (patch)
tree25253773f911ccc265757fdd2daac810c899b033 /etc/debian/postrm.ex
parent3b308831086d44c38da3e54f7c3ed514bd19e785 (diff)
Overhaul Debian package generation
Diffstat (limited to 'etc/debian/postrm.ex')
-rw-r--r--etc/debian/postrm.ex37
1 files changed, 37 insertions, 0 deletions
diff --git a/etc/debian/postrm.ex b/etc/debian/postrm.ex
new file mode 100644
index 0000000..8a98cd0
--- /dev/null
+++ b/etc/debian/postrm.ex
@@ -0,0 +1,37 @@
+#!/bin/sh
+# postrm script for bashtard
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+# * <postrm> `remove'
+# * <postrm> `purge'
+# * <old-postrm> `upgrade' <new-version>
+# * <new-postrm> `failed-upgrade' <old-version>
+# * <new-postrm> `abort-install'
+# * <new-postrm> `abort-install' <old-version>
+# * <new-postrm> `abort-upgrade' <old-version>
+# * <disappearer's-postrm> `disappear' <overwriter>
+# <overwriter-version>
+# for details, see https://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+ purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0