Put "set -e" after the license header
[kboot-utils.git] / debian / postrm
1 #!/bin/sh
2 # postrm script for kboot-utils
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 case "$1" in
9     purge)
10         rm -f /etc/kboot.conf
11     ;;
12
13     remove|upgrade|failed-upgrade|abort-upgrade|abort-install)
14     ;;
15
16     *)
17         echo "postrm called with unknown argument \`$1'" >&2
18         exit 1
19     ;;
20 esac
21
22 # dh_installdeb will replace this with shell code automatically
23 # generated by other debhelper scripts.
24
25 #DEBHELPER#
26
27 exit 0