- Timestamp:
- 08/07/08 16:35:15 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/installcd-overlay/usr/local/pcbsd/scripts/PCBSD.FormatDisk.sh
r2557 r2560 7 7 sysctl kern.geom.debugflags=16 8 8 9 #Get our Device Name 10 device=${1} 11 9 12 # Check if we need to shutdown any journals on this drive 10 13 ls /dev/${1}*.journal >/dev/null 2>/dev/null … … 14 17 for i in `ls ${1}*.journal` 15 18 do 16 gjournal stop ${i} 17 gjournal clear ${i} 19 rawjournal="`echo ${i} | cut -d '.' -f 1`" 20 gjournal stop -f ${rawjournal} 21 gjournal clear ${rawjournal} 18 22 done 19 23 fi 20 24 21 #Get our Device Name22 device=${1}23 25 24 26 #Erase any existing bootloader
