Your IP : 18.118.27.44


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/util-linux.postrm

#!/bin/sh
set -e

case "$1" in
	remove)
		;;

	purge)
		update-rc.d hwclock.sh remove >/dev/null || true
		rm -f /etc/adjtime
		;;

	*)
		;;
esac