From d1632bb0f5d12c734344d5f90221d75200f17dd0 Mon Sep 17 00:00:00 2001 From: micah Date: Tue, 27 Dec 2005 17:04:33 +0000 Subject: [PATCH] r208@um: micah | 2005-12-26 22:43:36 -0500 Fixed mysql check to see if vserver is running git-svn-id: http://code.autistici.org/svn/backupninja/trunk@269 758a04ac-41e6-0310-8a23-8373a73cc35d --- ChangeLog | 1 + handlers/mysql | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 860a0a2..d8b57c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ version 0.9.2 -- unreleased + fixed mysql check to see if vserver is running fixed duplicity globbing support in include and exclude options trac handler mkdir subdirectory problem fixed fixed broken toint() causing backups not to run when set to "everyday" diff --git a/handlers/mysql b/handlers/mysql index 8d59fa4..55bfb25 100644 --- a/handlers/mysql +++ b/handlers/mysql @@ -56,8 +56,11 @@ then 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." + $VSERVERINFO $vsname RUNNING + if [ $? -ne 0 ] + then + fatal "vserver $vsname is not running." + fi fi # create backup dirs, the vroot variable will be empty if no vsname was specified -- 2.30.2