From: Carl N Baldwin <cnb@hpsvcnb.fc.hp.com>
Date: Sat, 5 Nov 2005 00:13:57 +0000 (-0700)
Subject: Preserve hard-links on the target and copy whole-file only
X-Git-Tag: release-0.4~25
X-Git-Url: http://git.pippins.net/images/%27%20%20%20%20.%20%24GLOBALS%5B%27phpgw%27%5D-%3Elink%28%27inc/jquery/static/%7Bupdate_day%7D?a=commitdiff_plain;h=dcc0124d9ce7b2d6ee2230425e61446f9cc86a2d;p=backups%2F.git

Preserve hard-links on the target and copy whole-file only
---

diff --git a/scripts/pack-image.sh b/scripts/pack-image.sh
index 327d374..54706fd 100755
--- a/scripts/pack-image.sh
+++ b/scripts/pack-image.sh
@@ -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"
diff --git a/scripts/restore-script.sh b/scripts/restore-script.sh
index acd9008..fa16130 100755
--- a/scripts/restore-script.sh
+++ b/scripts/restore-script.sh
@@ -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