Added the "Emacs comment line" on top of every shell file.
[matthijs/upstream/backupninja.git] / handlers / svn
index cd3cc2e99983350fba18a5436d53e2169a938c18..26afafde504e4da30cf97b92d2a2c5cc7e405fcb 100644 (file)
@@ -1,3 +1,4 @@
+# -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
 #
 # this handler will backup subversion repostitories.
 #
@@ -5,14 +6,14 @@
 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
 
 # If vservers are configured, decide if the handler should
 # use them or if it should just operate on the host
-if [ "$VSERVERS" = "yes" ]
+if [ "$vservers" = "yes" ]
 then
        if [ ! -z $vsname ]
        then            
@@ -23,11 +24,16 @@ then
        fi
 fi
 
-# Check to make sure that the specified vserver exists
+# 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