Handle sparse files efficiently.
authorCarl Baldwin <cnb@ball.(none)>
Sat, 5 Nov 2005 01:59:48 +0000 (18:59 -0700)
committerCarl Baldwin <cnb@ball.(none)>
Sat, 5 Nov 2005 01:59:48 +0000 (18:59 -0700)
scripts/pack-image.sh
scripts/restore-script.sh

index 54706fd1ccb739b3ed78e01d1066fc5624a9efd2..ec7b1da74e99b2e8a1738eed0190c3f2c6feeb41 100755 (executable)
@@ -38,7 +38,7 @@ echo "Determining list of files to backup with lsbackups"
 } | lsbackups > $backups 2>$statusfile
 
 echo "Running rsync to pack the image"
-rsyncopts="-W -H -l -p -t -g -o -0 --files-from=- --stats --progress"
+rsyncopts="-W -H -S -l -p -t -g -o -0 --files-from=- --stats --progress"
 cat $backups | rsync $rsyncopts / $isomountdir
 
 echo "Copying over database and status file"
index fa16130323f4a2997a6eddfa3949a4997e585dd4..6592d72a612f8360d74e473bbd916387637931d4 100755 (executable)
@@ -48,6 +48,6 @@ for date in $dates; do
     fi
   done
 
-  rsyncopts="-W -H -l -p -t -g -o -0 --files-from=- --stats --progress"
+  rsyncopts="-W -H -S -l -p -t -g -o -0 --files-from=- --stats --progress"
   cat $dbfile | files-from-date.sh $date | rsync $rsyncopts ${mountdir%%/}/ ${2%%/}/
 done