updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / udev-old-kernel / ignore-remove.sh
blobbe9bf664b3a6e5308cc1f73d7dd4de4bb6f5e64d
1 #!/bin/sh
3 if [ -z "$1" ]; then
4 exit 1
5 fi
7 for f in ${DEVNAME} ${DEVLINKS}; do
8 if [ -e "/lib/udev/devices/${f#$1}" ]; then
9 exit 0
11 done
13 exit 1