diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 05:58:02 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 05:58:02 (GMT) |
commit | 6bcdc0236ae6c23bc9dd057913716af393af71ea (patch) | |
tree | a4cef43716cfa2040b11ae2ffb5867cd4a7ef6e7 /abs/core-testing/udev/cdsymlinks.sh | |
parent | 099ccac45c11ee6f96198367e9bea7040c9358c8 (diff) | |
download | linhes_pkgbuild-6bcdc0236ae6c23bc9dd057913716af393af71ea.zip linhes_pkgbuild-6bcdc0236ae6c23bc9dd057913716af393af71ea.tar.gz linhes_pkgbuild-6bcdc0236ae6c23bc9dd057913716af393af71ea.tar.bz2 |
udev:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/udev/cdsymlinks.sh')
-rwxr-xr-x | abs/core-testing/udev/cdsymlinks.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/abs/core-testing/udev/cdsymlinks.sh b/abs/core-testing/udev/cdsymlinks.sh index c4185ac..498abda 100755 --- a/abs/core-testing/udev/cdsymlinks.sh +++ b/abs/core-testing/udev/cdsymlinks.sh @@ -1,11 +1,15 @@ #! /bin/sh # Creates cdsymlinks in /dev # for Archlinux by Tobias Powalowski <tpowa@archlinux.org> -if [ -d /dev/cd ]; then + +# check on cd/dvd drives and if persistant rules file is used +if [ -d /dev/cd -a ! -e /etc/udev/rules.d/75-persistent-cd.rules ]; then + # remove existing device files rm /dev/cdrom* rm /dev/cdrw* rm /dev/dvd* rm /dev/dvdrw* + # start creating symlinks for i in /dev/cd/cdrom-*; do if [ -h $i ]; then [ "$CD_NUMBER" = "" ] && ln -s $i /dev/cdrom @@ -37,9 +41,4 @@ if [ -d /dev/cd ]; then ! [ "$DVDRW_NUMBER" = "" ] && DVDRW_NUMBER="$((DVDRW_NUMBER+1))" && ln -s $i /dev/dvdrw$DVDRW_NUMBER fi done -else - rm /dev/cdrom* - rm /dev/cdrw* - rm /dev/dvd* - rm /dev/dvdrw* fi |