Maemo debianization.
[wpasupplicant] / debian / wpasupplicant.postrm
diff --git a/debian/wpasupplicant.postrm b/debian/wpasupplicant.postrm
new file mode 100644 (file)
index 0000000..76e2fdd
--- /dev/null
@@ -0,0 +1,48 @@
+#!/bin/sh -e
+# This script can be called in the following ways:
+#
+# After the package was removed:
+#       <postrm> remove
+#
+# After the package was purged:
+#       <postrm> purge
+#
+# After the package was upgraded:
+#       <old-postrm> upgrade <new-version>
+# if that fails:
+#       <new-postrm> failed-upgrade <old-version>
+#
+#
+# After all of the packages files have been replaced:
+#       <postrm> disappear <overwriting-package> <version>
+#
+#
+# If preinst fails during install:
+#       <new-postrm> abort-install
+#
+# If preinst fails during upgrade of removed package:
+#       <new-postrm> abort-install <old-version>
+#
+# If preinst fails during upgrade:
+#       <new-postrm> abort-upgrade <old-version>
+
+case "$1" in
+       remove)
+               ;;
+       purge)
+               # Remove logfiles
+               rm -f /var/log/wpa_action.log* /var/log/wpa_action.*.log*
+               rm -f /var/log/wpa_supplicant.log* /var/log/wpa_supplicant.*.log*
+               ;;
+       upgrade|failed-upgrade|disappear)
+               ;;
+       abort-install|abort-upgrade)
+               ;;
+       *)
+               echo "$0 called with unknown argument \`$1'" 1>&2
+               exit 1
+               ;;
+esac
+
+#DEBHELPER#
+exit 0