[Debootloaders-emile] Bug#527614: owned and unowned files after purge (policy 6.8 + 10.7.3)

Chris Taylor chris at code-monkeys.org
Wed Jun 3 00:25:36 UTC 2009


tag 527614 patch
thanks

The following patch should fix this bug. It adds the file debian/emile-bootblocks.postrm which
will call rm -rf on /boot/emile and /lib/emile when package is being purged.


-Chris

--- /dev/null
+++ b/debian/emile-bootblocks.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+    purge)
+        rm -rf /boot/emile
+        rm -rf /lib/emile
+        ;;
+esac
+#DEBHELPER#
+exit 0





More information about the Debootloaders-emile mailing list