Imported Debian patch 0.1.0+git20131207+e452e83-0ubuntu12
[deb_libhybris.git] / debian / libhybris.postrm.in
diff --git a/debian/libhybris.postrm.in b/debian/libhybris.postrm.in
new file mode 100644 (file)
index 0000000..f975b6f
--- /dev/null
@@ -0,0 +1,47 @@
+#! /bin/sh
+#
+# see: dh_installdeb(1)
+#
+# Copyright (C) 2007 Mario Limonciello
+# Copyright (C) 2009-2011 Canonical Ltd.
+
+set -e
+
+# summary of how this script can be called:
+#        * <postrm> `remove'
+#        * <postrm> `purge'
+#        * <old-postrm> `upgrade' <new-version>
+#        * <new-postrm> `failed-upgrade' <old-version>
+#        * <new-postrm> `abort-install'
+#        * <new-postrm> `abort-install' <old-version>
+#        * <new-postrm> `abort-upgrade' <old-version>
+#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
+# for details, see /usr/share/doc/packaging-manual/
+
+PKGNAME=#DRIVERNAME#
+
+case "$1" in
+    remove|purge)
+
+        if [ "$1" = "purge" ]; then
+            rm -Rf /#PKGLIBDIR#
+        else
+            # This will preserve the etc directory
+            rm -f /#PKGLIBDIR#/*  2>/dev/null || true
+        fi
+
+        ;;
+
+    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 0
+
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#