Show
Ignore:
Timestamp:
05/24/08 06:24:45 (6 months ago)
Author:
melkor
Message:

Scripts parametrization

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pcbsd/trunk/installcd-overlay/usr/local/pcbsd/scripts/PCBSD.MountLangCD.sh

    r1844 r1964  
    11#!/bin/sh 
     2 
     3# Configuration file 
     4. /usr/local/pcbsd/scripts/PCBSD.Config 
    25 
    36# Give a few seconds for CD drive to settle first 
     
    912do 
    1013  # Find the CD Device 
    11   /sbin/mount_cd9660 $i /cdmnt 
    12   if [ -e "/cdmnt/README-Langs.txt" ] 
     14  /sbin/mount_cd9660 $i ${CDMNT} 
     15  if [ -e "${CDMNT}/README-Langs.txt" ] 
    1316  then 
    1417   FOUND=1 
     
    1619   break 
    1720  else 
    18    /sbin/umount /cdmnt >/dev/null 2>/dev/null 
     21   /sbin/umount ${CDMNT} >/dev/null 2>/dev/null 
    1922  fi 
    2023done