2005-12-28 21:19:29 +01:00
|
|
|
# -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
|
2009-05-22 15:27:09 +02:00
|
|
|
# vim: set filetype=sh sw=3 sts=3 expandtab autoindent:
|
2005-03-18 21:14:49 +01:00
|
|
|
#
|
|
|
|
# this handler will backup subversion repostitories.
|
|
|
|
#
|
|
|
|
|
|
|
|
getconf src /var/lib/svn
|
|
|
|
getconf dest /var/backups/svn
|
|
|
|
getconf tmp /var/backups/svn.tmp
|
2005-11-05 12:41:46 +01:00
|
|
|
getconf HOTBACKUP "/usr/bin/svnadmin hotcopy"
|
2009-05-22 14:50:52 +02:00
|
|
|
getconf vsname
|
2005-03-18 21:14:49 +01:00
|
|
|
|
|
|
|
error=0
|
2005-05-24 21:27:43 +02:00
|
|
|
|
2006-01-19 22:58:20 +01:00
|
|
|
# Decide if the handler should operate on a vserver or on the host.
|
|
|
|
# In the former case, check that $vsname exists and is running.
|
2011-04-25 18:55:58 +02:00
|
|
|
usevserver=no
|
|
|
|
vroot=''
|
2006-01-19 22:58:20 +01:00
|
|
|
if [ $vservers_are_available = yes ]; then
|
2006-02-02 21:28:28 +01:00
|
|
|
if [ -n "$vsname" ]; then
|
2006-01-19 22:58:20 +01:00
|
|
|
# does it exist ?
|
|
|
|
if ! vservers_exist "$vsname" ; then
|
|
|
|
fatal "The vserver given in vsname ($vsname) does not exist."
|
|
|
|
fi
|
|
|
|
# is it running ?
|
2008-06-24 17:55:10 +02:00
|
|
|
vservers_running $vsname || fatal "The vserver $vsname is not running."
|
2006-01-19 22:58:20 +01:00
|
|
|
# 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
|
2005-05-24 21:27:43 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd $vroot$src
|
2005-03-18 21:14:49 +01:00
|
|
|
for repo in `find . -name svnserve.conf`
|
|
|
|
do
|
2009-05-22 14:50:52 +02:00
|
|
|
repo=`dirname $repo`
|
|
|
|
repo=`dirname $repo`
|
2005-03-18 21:14:49 +01:00
|
|
|
|
2009-05-22 14:50:52 +02:00
|
|
|
ret=`mkdir -p $vroot$tmp/$repo 2>&1`
|
|
|
|
code=$?
|
|
|
|
if [ "$ret" ]; then
|
|
|
|
debug "$ret"
|
|
|
|
fi
|
|
|
|
if [ $code != 0 ]; then
|
|
|
|
error "command failed mkdir -p $vroot$tmp/$repo"
|
|
|
|
fi
|
2005-03-18 21:14:49 +01:00
|
|
|
|
2009-05-22 14:50:52 +02:00
|
|
|
if [ $usevserver = yes ]
|
|
|
|
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 $vroot$src/$repo $vroot$tmp/$repo"
|
|
|
|
error=1
|
|
|
|
fi
|
2005-03-18 21:14:49 +01:00
|
|
|
done
|
|
|
|
|
2005-03-21 18:50:49 +01:00
|
|
|
if [ $error -eq 1 ]; then
|
2009-05-22 14:50:52 +02:00
|
|
|
echo "Error: because of earlier errors, we are leaving svn backups in $vroot$tmp instead of $vroot$dest"
|
2005-03-18 21:14:49 +01:00
|
|
|
else
|
2009-05-22 14:50:52 +02:00
|
|
|
if [ -d $vroot$dest -a -d $vroot$tmp ]; then
|
|
|
|
rm -rf $vroot$dest
|
|
|
|
fi
|
|
|
|
if [ -d $vroot$tmp ]; then
|
|
|
|
mv $vroot$tmp $vroot$dest
|
|
|
|
fi
|
2005-03-18 21:14:49 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|