Added prerm file to packaging which removes situare.conf during
authorKaj Wallin <kaj.wallin@ixonos.com>
Tue, 1 Jun 2010 07:15:18 +0000 (10:15 +0300)
committerKaj Wallin <kaj.wallin@ixonos.com>
Tue, 1 Jun 2010 07:15:18 +0000 (10:15 +0300)
application removal

Reviewed by: Marko Niemelä

debian/prerm [new file with mode: 0644]

diff --git a/debian/prerm b/debian/prerm
new file mode 100644 (file)
index 0000000..8cae385
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/sh -e
+
+# remove settings file
+if [ -f /home/user/.config/Ixonos/Situare.conf ]; then
+    rm /home/user/.config/Ixonos/Situare.conf
+    echo Situare configuration removed
+fi
+
+exit 0