public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE3 - cman: wait for quorum
@ 2009-08-06 16:58 David Teigland
  0 siblings, 0 replies; only message in thread
From: David Teigland @ 2009-08-06 16:58 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=1bfe888048a09b324e7dd65b5d6c125530409327
Commit:        1bfe888048a09b324e7dd65b5d6c125530409327
Parent:        a0b7e5fc2d35021b5617cece6b959859efdfaba6
Author:        David Teigland <teigland@redhat.com>
AuthorDate:    Thu Aug 6 11:13:57 2009 -0500
Committer:     David Teigland <teigland@redhat.com>
CommitterDate: Thu Aug 6 11:13:57 2009 -0500

cman: wait for quorum

Wait for quorum when starting.
https://www.redhat.com/archives/cluster-devel/2009-August/msg00006.html

Signed-off-by: David Teigland <teigland@redhat.com>
---
 cman/init.d/cman.in |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in
index 6481d6b..ff140fc 100644
--- a/cman/init.d/cman.in
+++ b/cman/init.d/cman.in
@@ -68,13 +68,13 @@ fi
 #     a cluster is not joined.  If CMAN_CLUSTER_TIMEOUT is zero, then
 #     wait indefinately for a cluster join.  If CMAN_CLUSTER_TIMEOUT is
 #     negative, do not check to see that the cluster has been joined
-[ -z "$CMAN_CLUSTER_TIMEOUT" ] && CMAN_CLUSTER_TIMEOUT=120
+[ -z "$CMAN_CLUSTER_TIMEOUT" ] && CMAN_CLUSTER_TIMEOUT=60
 
 # CMAN_QUORUM_TIMEOUT -- amount of time to wait for a quorate cluster on
 #     startup quorum is needed by many other applications, so we may as
-#     well wait here.  If CMAN_QUORUM_TIMEOUT is less than 1, quorum will
+#     well wait here.  If CMAN_QUORUM_TIMEOUT is zero, quorum will
 #     be ignored.
-[ -z "$CMAN_QUORUM_TIMEOUT" ] && CMAN_QUORUM_TIMEOUT=0
+[ -z "$CMAN_QUORUM_TIMEOUT" ] && CMAN_QUORUM_TIMEOUT=20
 
 # CMAN_SHUTDOWN_TIMEOUT -- amount of time to wait for cman to become a
 #     cluster member before calling cman_tool leave during shutdown.
@@ -490,6 +490,14 @@ start_cman()
 	fi
 }
 
+wait_for_quorum()
+{
+	if [ $CMAN_QUORUM_TIMEOUT -gt 0 ]; then
+		errmsg=$( cman_tool -t $CMAN_QUORUM_TIMEOUT \
+			 -q wait 2>&1 ) || return 1
+	fi
+}
+
 stop_cman()
 {
 	if cman_running; then
@@ -678,6 +686,10 @@ start()
 		qdiskd_enabled \
 		"Starting qdiskd"
 
+	runwrap wait_for_quorum \
+		none \
+		"Waiting for quorum"
+
 	runwrap start_groupd \
 		groupd_enabled \
 		"Starting groupd"


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-08-06 16:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-06 16:58 cluster: STABLE3 - cman: wait for quorum David Teigland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).