summaryrefslogtreecommitdiff
path: root/debian/mdadm.postrm
diff options
context:
space:
mode:
authormadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-07-08 22:24:52 +0000
committermadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-07-08 22:24:52 +0000
commit724cca90e642a6bfbdd212dbf9b838187b27267e (patch)
treeb852ad629769e0c9738f7170eb9c861f4be25bec /debian/mdadm.postrm
parentc1aba7fa922cc2762f4044efb5fb574981a71703 (diff)
Load newtrunk into mdadm/trunk.
Diffstat (limited to 'debian/mdadm.postrm')
-rw-r--r--debian/mdadm.postrm30
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/mdadm.postrm b/debian/mdadm.postrm
new file mode 100644
index 00000000..84a7f141
--- /dev/null
+++ b/debian/mdadm.postrm
@@ -0,0 +1,30 @@
+#! /bin/sh -eu
+# Copyright © 2001,2002 Mario Jou/3en <joussen@debian.org>
+# Copyright © 2006 Martin F. Krafft <madduck@debian.org>
+# Distributable under the terms of the GNU GPL version 2.
+
+case "${1:-}" in
+ remove)
+ if command -v update-initramfs >/dev/null; then
+ echo "W: mdadm: I'll update the initramfs, but if you need RAID to boot" >&2
+ echo "W: mdadm: with initramfs, you'll be screwed!" >&2
+ update-initramfs -u
+ fi
+ ;;
+
+ purge)
+ rm -f /etc/default/mdadm
+ if [ -f /var/lib/mdadm/mdadm.conf-generated ]; then
+ rm -f /etc/mdadm/mdadm.conf
+ fi
+ rm -rf /var/lib/mdadm
+ ;;
+
+ *) :;;
+esac
+
+# just in case somebody actually purges mdadm, we need this to make debconf
+# (added by dh_installdebconf) behave. See #369953
+set +u
+
+#DEBHELPER#