diff options
author | intrigeri <intrigeri@boum.org> | 2005-08-27 00:19:50 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2005-08-27 00:19:50 +0000 |
commit | cf1817d075b934aeab77d7bf10da3bf886b034ae (patch) | |
tree | 129f8d7ac5c6f0ca954e1e77b604a5705febeb4b /handlers/svn | |
parent | bd0b2eaea8db2aecd8ba6f061901d4a41a0881a2 (diff) | |
download | backupninja-cf1817d075b934aeab77d7bf10da3bf886b034ae.tar.gz backupninja-cf1817d075b934aeab77d7bf10da3bf886b034ae.tar.bz2 |
mysql and dup handlers: when using a vserver, check if it is running
Diffstat (limited to 'handlers/svn')
-rw-r--r-- | handlers/svn | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/handlers/svn b/handlers/svn index 551255b..6ac5402 100644 --- a/handlers/svn +++ b/handlers/svn @@ -23,11 +23,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 |