Added initial unfs3 sources for version 0.9.22+dfsg-1maemo2
[unfs3] / unfs3 / debian / unfs3.postrm
diff --git a/unfs3/debian/unfs3.postrm b/unfs3/debian/unfs3.postrm
new file mode 100644 (file)
index 0000000..8a1bac4
--- /dev/null
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+set -e
+
+case "${1}" in
+       purge)
+               if [ -e /etc/exports ]
+               then
+                       rm -f /etc/exports
+               fi
+               ;;
+
+       remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+
+               ;;
+
+       *)
+               echo "postrm called with unknown argument \`${1}'" >&2
+               exit 1
+               ;;
+esac
+
+#DEBHELPER#
+
+exit 0