summaryrefslogtreecommitdiff
path: root/debian/ipmitool.postrm
blob: f6d6ee969c08e1aee5b81e0257c574a46ccd456d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh 

set -e


#
# remove System V init file artefacte
# new since 1.8.18-9
#
if [ "$1" = "purge" ] | [ "$1" = "remove" ]; then
	rm -f /etc/rc0.d/K01ipmievd
	rm -f /etc/rc1.d/K01ipmievd
	rm -f /etc/rc2.d/K01ipmievd
	rm -f /etc/rc3.d/K01ipmievd
	rm -f /etc/rc4.d/K01ipmievd
	rm -f /etc/rc5.d/K01ipmievd
	rm -f /etc/rc6.d/K01ipmievd
fi

#DEBHELPER#