]> git.donarmstrong.com Git - neurodebian.git/blobdiff - debian/neurodebian.postrm
Merge branch 'master' of git://git.debian.org/pkg-exppsy/neurodebian
[neurodebian.git] / debian / neurodebian.postrm
diff --git a/debian/neurodebian.postrm b/debian/neurodebian.postrm
new file mode 100755 (executable)
index 0000000..902c3f4
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+set -e
+
+case "$1" in
+    purge)
+               rm -f /etc/apt/sources.list.d/neurodebian.sources*.list
+    ;;
+
+    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+    ;;
+
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+#DEBHELPER#
+
+exit 0