projects
/
mirror
/
dsa-nagios.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Decommission lebrun and schroeder
[mirror/dsa-nagios.git]
/
dsa-nagios-checks
/
debian
/
postrm
1
#!/bin/sh
2
# postrm script for dsa-ssh-weak-keys
3
#
4
# see: dh_installdeb(1)
5
6
set -e
7
8
case "$1" in
9
purge)
10
rm -f /var/cache/dsa/nagios/weak-ssh-keys
11
;;
12
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
13
;;
14
15
*)
16
echo "postrm called with unknown argument \`$1'" >&2
17
exit 1
18
;;
19
esac
20
21
#DEBHELPER#
22
23
exit 0