diff options
Diffstat (limited to 'ubuntu/maverick_automake/kdebase/debian/kcontrol-kde3.postrm')
-rw-r--r-- | ubuntu/maverick_automake/kdebase/debian/kcontrol-kde3.postrm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ubuntu/maverick_automake/kdebase/debian/kcontrol-kde3.postrm b/ubuntu/maverick_automake/kdebase/debian/kcontrol-kde3.postrm new file mode 100644 index 000000000..3832d3be4 --- /dev/null +++ b/ubuntu/maverick_automake/kdebase/debian/kcontrol-kde3.postrm @@ -0,0 +1,14 @@ +#!/bin/sh -e + +case "$1" in + + purge) + LINK="/etc/udev/rules.d/025_logitechmouse.rules" + [ ! -L "$LINK" ] || rm -f "$LINK" + ;; + +esac + +#DEBHELPER# + +exit 0 |