Skip to content
Snippets Groups Projects
svn 1.96 KiB
Newer Older
  • Learn to ignore specific revisions
  • # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
    
    elijah's avatar
    elijah committed
    #
    # this handler will backup subversion repostitories.
    #
    
    getconf src /var/lib/svn
    getconf dest /var/backups/svn
    getconf tmp /var/backups/svn.tmp
    
    getconf HOTBACKUP "/usr/bin/svnadmin hotcopy"
    
    micah's avatar
    micah committed
    getconf vsname	
    
    elijah's avatar
    elijah committed
    
    error=0
    
    micah's avatar
    micah committed
    
    
    # Decide if the handler should operate on a vserver or on the host.
    # In the former case, check that $vsname exists and is running.
    local usevserver=no
    local vroot
    if [ $vservers_are_available = yes ]; then
       if [ -z "$vsname" ]; then
          # does it exist ?
          if ! vservers_exist "$vsname" ; then
             fatal "The vserver given in vsname ($vsname) does not exist."
          fi
          # is it running ?
          $VSERVERINFO -q $vsname RUNNING
          if [ $? -ne 0 ]; then
             fatal "The vserver $vsname is not running."
          fi
          # everything ok
          info "Using vserver '$vsname'."
          usevserver=yes
          vroot="$VROOTDIR/$vsname"
       else
          info "No vserver name specified, actions will be performed on the host."
       fi
    
    micah's avatar
    micah committed
    fi
    
    cd $vroot$src
    
    elijah's avatar
    elijah committed
    for repo in `find . -name svnserve.conf`
    do
        repo=`dirname $repo`
        repo=`dirname $repo`
    
    
    micah's avatar
    micah committed
        ret=`mkdir -p $vroot$tmp/$repo 2>&1`
    
    elijah's avatar
    elijah committed
        code=$?
        if [ "$ret" ]; then
           debug "$ret"
        fi
        if [ $code != 0 ]; then   
    
    micah's avatar
    micah committed
           error "command failed mkdir -p $vroot$tmp/$repo"
    
    elijah's avatar
    elijah committed
        fi
    
    
    micah's avatar
    micah committed
        then
    	ret=`$VSERVER $vsname exec $HOTBACKUP $src/$repo $tmp/$repo 2>&1`
        else
    	ret=`$HOTBACKUP $src/$repo $tmp/$repo 2>&1`
        fi
    
    elijah's avatar
    elijah committed
        code=$?
        if [ "$ret" ]; then
           debug "$ret"
        fi
        if [ $code != 0 ]; then
    
    micah's avatar
    micah committed
           error "command failed -- $HOTBACKUP $vroot$src/$repo $vroot$tmp/$repo"
    
    elijah's avatar
    elijah committed
           error=1
        fi
    done
    
    
    if [ $error -eq 1 ]; then
    
    micah's avatar
    micah committed
        echo "Error: because of earlier errors, we are leaving svn backups in $vroot$tmp instead of $vroot$dest"
    
    elijah's avatar
    elijah committed
    else
    
    micah's avatar
    micah committed
        if [ -d $vroot$dest -a -d $vroot$tmp ]; then
            rm -rf $vroot$dest
    
    elijah's avatar
    elijah committed
        fi
    
    micah's avatar
    micah committed
        if [ -d $vroot$tmp ]; then
            mv $vroot$tmp $vroot$dest
    
    elijah's avatar
    elijah committed
        fi
    fi
    
    exit 0