summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-ceph-tools.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 08:45:45 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 08:58:31 +0000
commitc63767cdee7fb4fcf625ec57b6cd6360ef82bdbb (patch)
tree635d2045cba6d19ac488c2b12601f899534276e0 /debian/open-infrastructure-ceph-tools.postrm
parentRepeating Section for binary packages in control. (diff)
downloadopen-infrastructure-storage-tools-c63767cdee7fb4fcf625ec57b6cd6360ef82bdbb.tar.xz
open-infrastructure-storage-tools-c63767cdee7fb4fcf625ec57b6cd6360ef82bdbb.zip
Renaming binary package to open-infrastructure-ceph-tools for consistency and future-proofing.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/open-infrastructure-ceph-tools.postrm')
-rwxr-xr-xdebian/open-infrastructure-ceph-tools.postrm22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/open-infrastructure-ceph-tools.postrm b/debian/open-infrastructure-ceph-tools.postrm
new file mode 100755
index 0000000..680751c
--- /dev/null
+++ b/debian/open-infrastructure-ceph-tools.postrm
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ purge)
+ rm -f /etc/default/ceph-tools
+ ;;
+
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0