X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fsvn;h=4dca225172cce1f6b30825221d0529c7fd8192e6;hb=921babdf413f370acccc5e125a2c37fbdd18afd3;hp=d0e3648075dda23455177e42d3a54fe5e3368550;hpb=76711771db7c1f38a765aa985010aa50bd24047b;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/svn b/handlers/svn index d0e3648..4dca225 100644 --- a/handlers/svn +++ b/handlers/svn @@ -5,43 +5,75 @@ getconf src /var/lib/svn getconf dest /var/backups/svn getconf tmp /var/backups/svn.tmp -getconf HOTBACKUP /usr/lib/subversion/hot-backup.py +getconf HOTBACKUP "/usr/bin/svnadmin hotcopy" +getconf vsname error=0 -cd $src + +# If vservers are configured, decide if the handler should +# use them or if it should just operate on the host +if [ "$vservers" = "yes" ] +then + if [ ! -z $vsname ] + then + info "Using vserver '$vsname'" + usevserver=1 + else + info "No vserver name specified, actions will be performed on the host" + fi +fi + +# If needed, make sure that the specified vserver exists and is running. +if [ $usevserver ] +then + info "examining vserver '$vsname'" + # does it exist ? + vroot="$VROOTDIR/$vsname" + [ -d $vroot ] || fatal "vserver '$vsname' does not exist at '$vroot'" + # is it running ? + running=`$VSERVERINFO $vsname RUNNING` + [ "$running" = "1" ] || fatal "vserver $vsname is not running." +fi + +cd $vroot$src for repo in `find . -name svnserve.conf` do repo=`dirname $repo` repo=`dirname $repo` - ret=`mkdir -p $tmp/$repo 2>&1` + ret=`mkdir -p $vroot$tmp/$repo 2>&1` code=$? if [ "$ret" ]; then debug "$ret" fi if [ $code != 0 ]; then - error "command failed mkdir -p $tmp/$repo" + error "command failed mkdir -p $vroot$tmp/$repo" fi - ret=`$HOTBACKUP $src/$repo $tmp/$repo 2>&1` + if [ $usevserver ] + then + ret=`$VSERVER $vsname exec $HOTBACKUP $src/$repo $tmp/$repo 2>&1` + else + ret=`$HOTBACKUP $src/$repo $tmp/$repo 2>&1` + fi code=$? if [ "$ret" ]; then debug "$ret" fi if [ $code != 0 ]; then - error "command failed -- $HOTBACKUP $src/$repo $tmp/$repo" + error "command failed -- $HOTBACKUP $vroot$src/$repo $vroot$tmp/$repo" error=1 fi done if [ $error -eq 1 ]; then - echo "Error: because of earlier errors, we are leaving svn backups in $tmp instead of $dest" + echo "Error: because of earlier errors, we are leaving svn backups in $vroot$tmp instead of $vroot$dest" else - if [ -d $dest -a -d $tmp ]; then - rm -rf $dest + if [ -d $vroot$dest -a -d $vroot$tmp ]; then + rm -rf $vroot$dest fi - if [ -d $tmp ]; then - mv $tmp $dest + if [ -d $vroot$tmp ]; then + mv $vroot$tmp $vroot$dest fi fi