]> git.donarmstrong.com Git - neurodebian.git/blob - debian/neurodebian.postrm
902c3f49122b01d6d34d11cd1576e3b1e292d38b
[neurodebian.git] / debian / neurodebian.postrm
1 #!/bin/bash
2
3 set -e
4
5 case "$1" in
6     purge)
7                 rm -f /etc/apt/sources.list.d/neurodebian.sources*.list
8     ;;
9
10     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
11     ;;
12
13     *)
14         echo "postrm called with unknown argument \`$1'" >&2
15         exit 1
16     ;;
17 esac
18
19 #DEBHELPER#
20
21 exit 0