summaryrefslogtreecommitdiff
path: root/debian/util-linux.preinst
blob: a6a6527e15e6346bdb7fdd15df3a1f5449a09bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

set -e

if [ "$1" = install ] || [ "$1" = upgrade ]; then
	if [ -e "/etc/udev/rules.d/85-hwclock.rules" ]; then
		if [ "`md5sum \"/etc/udev/rules.d/85-hwclock.rules\" | sed -e \"s/ .*//\"`" = \
		     "`dpkg-query -W -f='${Conffiles}' util-linux | sed -n -e \"\\\\' /etc/udev/rules.d/85-hwclock.rules's/.* //p\"`" ]
		then
			rm -f "/etc/udev/rules.d/85-hwclock.rules"
		fi
	fi
fi

#DEBHELPER#