diff options
Diffstat (limited to 'debian/util-linux.postrm')
-rw-r--r-- | debian/util-linux.postrm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/util-linux.postrm b/debian/util-linux.postrm new file mode 100644 index 00000000..5e02ad26 --- /dev/null +++ b/debian/util-linux.postrm @@ -0,0 +1,20 @@ +#!/bin/sh + +case "$1" in + remove) + ;; + purge) + update-rc.d hwclock.sh remove >/dev/null + update-rc.d hwclockfirst.sh remove >/dev/null + rm -f /etc/adjtime + ;; + *) + ;; +esac + +if [ -x /usr/sbin/update-mime ]; then + update-mime +fi + + +#DEBHELPER# |