From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio M. Di Nitto Date: Fri, 14 Sep 2012 15:27:42 +0200 Subject: [Cluster-devel] [PATCH] cman init: increase default shutdown timeouts Message-ID: <1347629262-13187-1-git-send-email-fdinitto@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit From: "Fabio M. Di Nitto" in some conditions, specially triggered when shutting down all nodes at the same time, corosync takes a lot longer than 10 seconds to stabilize membership. That means that daemons will not quit fast enough before cman init will declare a shutdown error. Increase the default shutdown timeouts from 10 to 30 seconds. Resolves: rhbz#854032 Signed-off-by: Fabio M. Di Nitto --- cman/init.d/cman.in | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in index 1917abd..a88f52f 100644 --- a/cman/init.d/cman.in +++ b/cman/init.d/cman.in @@ -305,7 +305,7 @@ stop_daemon() shift retryforsec=$1 - [ -z "$retryforsec" ] && retryforsec=1 + [ -z "$retryforsec" ] && retryforsec=30 retries=0 if check_sleep; then @@ -661,7 +661,7 @@ start_qdiskd() stop_qdiskd() { - stop_daemon qdiskd 5 + stop_daemon qdiskd } start_groupd() @@ -770,7 +770,7 @@ join_fence_domain() leave_fence_domain() { if status fenced > /dev/null 2>&1; then - errmsg=$( fence_tool leave -w 10 2>&1 ) + errmsg=$( fence_tool leave -w 30 2>&1 ) return $? fi } -- 1.7.7.6