summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-udev
blob: cbf8dbe405fb0ddad74e58991c629dc38503d24f (plain)
1
2
3
4
5
6
7
8
9
if [ "$1" = configure ]; then
	if [ -e /etc/udev/#FILE# ]; then
		echo "Preserving user changes to /etc/udev/rules.d/#PRIO##FILE# ..."
		if [ -e /etc/udev/rules.d/#PRIO##FILE# ]; then
			mv -f /etc/udev/rules.d/#PRIO##FILE# /etc/udev/rules.d/#PRIO##FILE#.dpkg-new
		fi
		mv -f /etc/udev/#FILE# /etc/udev/rules.d/#PRIO##FILE#
	fi
fi