X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=debian%2Fneurodebian.postrm;fp=debian%2Fneurodebian.postrm;h=902c3f49122b01d6d34d11cd1576e3b1e292d38b;hb=6c6fa9cd3bd627a60f165682f96af3cc06d9ccc9;hp=0000000000000000000000000000000000000000;hpb=15d0a7f8a363c9fe2b286ddcb99acc41c9c91681;p=neurodebian.git diff --git a/debian/neurodebian.postrm b/debian/neurodebian.postrm new file mode 100755 index 0000000..902c3f4 --- /dev/null +++ b/debian/neurodebian.postrm @@ -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