Preserve hard-links on the target and copy whole-file only
authorCarl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Sat, 5 Nov 2005 00:13:57 +0000 (17:13 -0700)
committerCarl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Sat, 5 Nov 2005 00:13:57 +0000 (17:13 -0700)
scripts/pack-image.sh
scripts/restore-script.sh

index 327d374b27762d5b741e6456e5fe709dc2f5c26e..54706fd1ccb739b3ed78e01d1066fc5624a9efd2 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="-l -p -t -g -o -0 --files-from=- --stats --progress"
+rsyncopts="-W -H -l -p -t -g -o -0 --files-from=- --stats --progress"
 cat $backups | rsync $rsyncopts / $isomountdir
 
 echo "Copying over database and status file"
index acd90081c17aa632ec6d17c1de9290491935e1d6..fa16130323f4a2997a6eddfa3949a4997e585dd4 100755 (executable)
@@ -48,6 +48,6 @@ for date in $dates; do
     fi
   done
 
-  rsyncopts="-l -p -t -g -o -0 --files-from=- --stats --progress"
+  rsyncopts="-W -H -l -p -t -g -o -0 --files-from=- --stats --progress"
   cat $dbfile | files-from-date.sh $date | rsync $rsyncopts ${mountdir%%/}/ ${2%%/}/
 done