summaryrefslogtreecommitdiff
path: root/autoscripts/preinst-udev
blob: 9c63d191af3535c53ffdad941036507869ead425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if [ "$1" = install ] || [ "$1" = upgrade ]; then
	if [ -e /etc/udev/#FILE# ]; then
		if [ "`md5sum \"/etc/udev/#FILE#\" | sed -e \"s/ .*//\"`" = \
		     "`sed -n -e \"/^Conffiles:/,/^[^ ]/{\\\\' /etc/udev/#FILE#'{s/.* //;p}}\" /var/lib/dpkg/status`" ]
		then
			rm -f /etc/udev/#FILE#
		fi
	fi
	if [ -L /etc/udev/rules.d/#PRIO##FILE# ]; then
		rm -f /etc/udev/rules.d/#PRIO##FILE#
	fi
fi