summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/tdebase/debian/kcontrol-trinity.postinst
blob: e879da4625c3fb24d15c730881c4ecb39024ec7c (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" ] || [ ! -f "${LINK%/rules.d/*}/logitechmouse.rules" ] || ln -s ../logitechmouse.rules "$LINK"
	;;

esac

#DEBHELPER#

exit 0