- Timestamp:
- 05/06/08 11:03:05 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pcbsd/trunk/installcd-overlay/usr/local/pcbsd/scripts/PCBSD.ExtractTar.sh
r1826 r1845 12 12 LC_COLLATE="" ; export LC_COLLATE 13 13 14 # Make our pipe file 15 mkfifo /mnt/tarpipe 16 17 (sleep 2; tar xvpf /mnt/tarpipe >&1 2>&1) & 18 19 lzma -d -c /cdmnt/PCBSD.tar.lzma >/mnt/tarpipe 14 lzma -d -c /cdmnt/PCBSD.tar.lzma | tar -xpvf - >&1 2>&1 20 15 if [ "$?" != "0" ] 21 16 then 22 17 exit 1 23 18 fi 24 25 # Delete the pipefile26 rm /mnt/tarpipe27 19 28 20 mkdir /mnt/dev >/dev/null
