X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-utils.git;a=blobdiff_plain;f=backup%2Fsnaprsync;h=3b4bfc7954af9345580ca8b3c7436069856f20cd;hp=14d471d47b6d8723280612d126113076a00bbc35;hb=330f3e99d272db13f5b392ce3243df2efa67138d;hpb=0e25760573e91f64dae336f62aa542c3fa346289 diff --git a/backup/snaprsync b/backup/snaprsync index 14d471d..3b4bfc7 100755 --- a/backup/snaprsync +++ b/backup/snaprsync @@ -1,7 +1,7 @@ #!/bin/bash # # usage: snaprsync ... -# is ---= +# is --= # are assigned to unused mandatory values in order # mandatory: # rhost device mountpoint localarea @@ -12,22 +12,28 @@ retcdir=/etc/chiark-backup rvardir=/var/lib/chiark-backup bwlimit= + subdir=. + rsyncopts= + sshopts= + summer=summer set -e badusage () { echo >&2 "snaprsync: bad usage: $1"; exit 12; } -x () { echo "+ $@"; "$@"; } -xspawned () { eval "${1}pid=$!; echo \"+[$!] ($1) &\";"; } -xwait () { eval "echo \"+[\$${1}pid] ($1)...\"; wait \$${1}pid;"; } +nb_echo () { (echo "$@"); } # See Debian #382798 +x () { nb_echo "+ $@"; "$@"; } +xspawned () { eval "${1}pid=$!; nb_echo \"+[$!] ($1) &\";"; } +xwait () { eval "nb_echo \"+[\$${1}pid] ($1)...\"; wait \$${1}pid;"; } while true; do case "$1" in - --?*=?*) + --?*=*) name=${1#--}; name=${name%%=*} value=${1#--*=} case "$name" in rhost|device|mountpoint|localarea);; - localprevious|rsharedir|retcdir|rvardir|bwlimit);; + localprevious|snapkind|rsharedir|retcdir|rvardir|bwlimit);; + subdir|rsyncopts|sshopts|summer);; *) badusage "unknown setting $name";; esac eval "$name=\$value" @@ -49,18 +55,18 @@ done datefmt='%Y-%m-%d %H:%M:%S Z' rsync="rsync ${bwlimit:+--bwlimit} $bwlimit" -export RSYNC_RSH='ssh -o compression=no' +export RSYNC_RSH="ssh -o compression=no $sshopts" sshpfx='PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin; export PATH; ' -ssh $rhost "$sshpfx date -u '+$rhost $datefmt start'" -ssh $rhost "$sshpfx id" -ssh $rhost "$sshpfx ls -d $rsharedir" -ssh $rhost "$sshpfx ls -d $rvardir" +ssh $sshopts $rhost "$sshpfx date -u '+$rhost $datefmt start'" +ssh $sshopts $rhost "$sshpfx id" +ssh $sshopts $rhost "$sshpfx ls -d $rsharedir" +ssh $sshopts $rhost "$sshpfx ls -d $rvardir" test -d $localarea || x mkdir $localarea ournode=`uname -n` rsumsfile=for-$ournode.sums -summer='summer -ACDbtqf' +summer="$summer -ACDbtqfx" td=/dev/enoent rc=12 @@ -70,9 +76,16 @@ td=`mktemp -td` mkfifo -m 600 $td/sentinel exec 4<>$td/sentinel -x ssh $rhost "$sshpfx $rsharedir/snap-drop" -x ssh $rhost "$sshpfx $retcdir/snap/$snapkind snap $rvardir $device $mountpoint" -ssh $rhost <$td/sentinel 4<&- " +x ssh $sshopts $rhost "$sshpfx $rsharedir/snap-drop" +ssh $sshopts $rhost " + $sshpfx + set -e + cd $rvardir + echo '$retcdir/snap/$snapkind drop $rvardir' >snap-drop.new + mv snap-drop.new snap-drop +" +x ssh $sshopts $rhost "$sshpfx $retcdir/snap/$snapkind snap $rvardir $device $mountpoint" +ssh $sshopts $rhost <$td/sentinel 4<&- " $sshpfx set -e date -u '+$rhost $datefmt main' @@ -82,30 +95,28 @@ ssh $rhost <$td/sentinel 4<&- " umask 077 exec 3>$rsumsfile cd snap-mount - $summer . | sort -t' ' -k2 >&3 - test x\"\${PIPESTATUS[*]}\" = 'x0 0' + $summer . >&3 date -u '+$rhost $datefmt sumsdone' cd .. " & xspawned rsum -x $rsync -aHSxz --numeric-ids --delete \ +x $rsync -aHSxz --numeric-ids --delete $rsyncopts \ ${localprevious:+--link-dest} $localprevious \ - $rhost:$rvardir/snap-mount/. $localarea/. + $rhost:$rvardir/snap-mount/$subdir $localarea/. date -u "+ $datefmt rsyncdone" exec 3>$localarea,lsums (cd $localarea && \ - $summer . | sort -t' ' -k2 >&3 && \ - test x"${PIPESTATUS[*]}" = 'x0 0') & + $summer . >&3) & xspawned lsum exec 3>&- xwait rsum exec 4<&- date -u "+ $datefmt sumsdone" -x ssh $rhost "$sshpfx $rsharedir/snap-drop" +x ssh $sshopts $rhost "$sshpfx $rsharedir/snap-drop" -if [ "x${localprevious}" != x ]; then +if [ "x${localprevious}" != x ] && test -f "$localprevious,rsums"; then cp "$localprevious,rsums" "$localarea,rsums" fi x $rsync -p \ @@ -116,7 +127,8 @@ xwait $lsum date -u "+ $datefmt checking" set +e -diff -u "$localarea,rsums" "$localarea,lsums" >"$localarea,sumsdiff" +diff -u <(sed -e 's/^mountpoint/dir /' "$localarea,rsums") \ + "$localarea,lsums" >"$localarea,sumsdiff" diffrc=$? set -e test $diffrc = 0 || test $diffrc = 1