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

set -e

if dpkg-maintscript-helper supports rm_conffile; then
	dpkg-maintscript-helper rm_conffile \
		/etc/logcheck/ignore.d.server/ntp 1:4.2.6+dfsg-1 -- "$@"
	dpkg-maintscript-helper rm_conffile \
		/etc/dhcp3/dhclient-enter-hooks.d/ntp 1:4.2.6+dfsg-1 -- "$@"
	dpkg-maintscript-helper rm_conffile \
		/etc/network/if-up.d/ntp 1:4.2.6+dfsg-1 -- "$@"
fi

installinit_error() {
	exit $?
}

#DEBHELPER#

if [ "$1" = "purge" ]; then
	deluser --system --quiet ntp || true
	rm -rf /var/lib/ntp/
	rm -rf /var/log/ntpstats/
fi