- Timestamp:
- 05/24/08 06:24:45 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/installcd-overlay/usr/local/pcbsd/scripts/PCBSD.MountLangCD.sh
r1844 r1964 1 1 #!/bin/sh 2 3 # Configuration file 4 . /usr/local/pcbsd/scripts/PCBSD.Config 2 5 3 6 # Give a few seconds for CD drive to settle first … … 9 12 do 10 13 # Find the CD Device 11 /sbin/mount_cd9660 $i /cdmnt12 if [ -e " /cdmnt/README-Langs.txt" ]14 /sbin/mount_cd9660 $i ${CDMNT} 15 if [ -e "${CDMNT}/README-Langs.txt" ] 13 16 then 14 17 FOUND=1 … … 16 19 break 17 20 else 18 /sbin/umount /cdmnt>/dev/null 2>/dev/null21 /sbin/umount ${CDMNT} >/dev/null 2>/dev/null 19 22 fi 20 23 done
