summaryrefslogtreecommitdiffstats
path: root/debian/postrm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:37:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:37:48 +0000
commitde85f20e859fad79dc95aaca554c4fa09e920374 (patch)
treed658ca6f0c6446d5bb248240d0fc1876d04d5f0b /debian/postrm
parentMerging upstream version 13.3. (diff)
downloadbase-files-debian.tar.xz
base-files-debian.zip
Adding debian version 13.3.debian/13.3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/postrm')
-rw-r--r--debian/postrm11
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/postrm b/debian/postrm
new file mode 100644
index 0000000..402c738
--- /dev/null
+++ b/debian/postrm
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = "remove" ]; then
+ for d in #USR_MERGE_MULTILIB#; do
+ # Remove DEP17 M4 protective diversions
+ dpkg-divert --quiet --package base-files --remove --no-rename --divert "/.$d.usr-is-merged" "/$d"
+ done
+fi
+
+#DEBHELPER#