summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-storage-tools.postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-04 11:31:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-04 11:37:18 +0000
commit2d29ea9c7c99fb87593eac3bb53b9f144767d5fc (patch)
treeb46ff6369f456066d7db5216d93baa6bd53e3701 /debian/open-infrastructure-storage-tools.postrm
parentReleasing debian version 20190301-lts1-3. (diff)
downloadopen-infrastructure-storage-tools-2d29ea9c7c99fb87593eac3bb53b9f144767d5fc.tar.xz
open-infrastructure-storage-tools-2d29ea9c7c99fb87593eac3bb53b9f144767d5fc.zip
Renaming ceph-tools to storage-tools to avoid future NEW processing for adding additional tools.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/open-infrastructure-storage-tools.postrm')
-rwxr-xr-xdebian/open-infrastructure-storage-tools.postrm22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/open-infrastructure-storage-tools.postrm b/debian/open-infrastructure-storage-tools.postrm
new file mode 100755
index 0000000..b714662
--- /dev/null
+++ b/debian/open-infrastructure-storage-tools.postrm
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+ purge)
+ rm -f /etc/open-infrastructure/ceph-tools.conf
+ ;;
+
+ remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0