projects
/
kboot-utils.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial import
[kboot-utils.git]
/
debian
/
postrm
1
#!/bin/bash
2
set -e
3
4
case "$1" in
5
purge)
6
rm -f /etc/kboot.conf
7
;;
8
remove|upgrade|failed-upgrade|abort-upgrade|abort-install)
9
;;
10
*)
11
echo "postrm called with unknown argument \`$1'" >&2
12
exit 1
13
;;
14
esac
15
16
# dh_installdeb will replace this with shell code automatically
17
# generated by other debhelper scripts.
18
19
#DEBHELPER#
20
21
exit 0