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

set -e

case "$1" in
	remove)
		;;
        purge)
                update-rc.d hwclock.sh remove >/dev/null || true
		update-rc.d hwclockfirst.sh remove >/dev/null || true
		rm -f /etc/adjtime
                ;;
	*)
		;;
esac

if [ -x /usr/sbin/update-mime ]; then
	update-mime
fi


#DEBHELPER#