summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/kdebase/debian/kcontrol-trinity.postinst
blob: 77efdbda7fbb608186301d2db6f9a4880b5d5112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e

case "$1" in

	configure)
	LINK="/etc/udev/rules.d/025_logitechmouse.rules"
	[ -e "$LINK" ] || [ -L "$LINK" ] || ln -s ../logitechmouse.rules "$LINK"
	;;

esac

#DEBHELPER#

exit 0