This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

cluster: STABLE3 - cman init: fix groupd check


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=45fbdfa2fa826d84d30fee86d6c972d965961645
Commit:        45fbdfa2fa826d84d30fee86d6c972d965961645
Parent:        d96fe096f1b9e588c92583bd64100dea206a8603
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Tue Jun 16 11:48:39 2009 +0200
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Tue Jun 16 11:48:39 2009 +0200

cman init: fix groupd check

groupd was not started with groupd_compat="1" because of a bad
return code in the enable check.

Fix the return code, the var check and make groupd stop conditional

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 cman/init.d/cman.in |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in
index fb12d3b..b3ceb7d 100644
--- a/cman/init.d/cman.in
+++ b/cman/init.d/cman.in
@@ -335,7 +335,8 @@ groupd_enabled()
 			2>/dev/null || true)"
 
 	[ -z "$groupd_compat" ] && return 1
-	[ "$groupd_compat" == 0 ] && return 1
+	[ "$groupd_compat" = 0 ] && return 1
+	return 0
 }
 
 cmannotifyd_enabled()
@@ -727,7 +728,7 @@ stop()
 		"Stopping fenced"
 
 	runwrap stop_groupd \
-		none \
+		groupd_enabled \
 		"Stopping groupd"
 
 	runwrap stop_qdiskd \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]