This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Cluster Project".
http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=9ed5eebf3af21237ca0ff76e5d525d6f37d91ac7 The branch, master has been updated via 9ed5eebf3af21237ca0ff76e5d525d6f37d91ac7 (commit) from 446f78915e0d8f1964cb2cfccbced47768d215b9 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9ed5eebf3af21237ca0ff76e5d525d6f37d91ac7 Author: Fabio M. Di Nitto <[EMAIL PROTECTED]> Date: Wed May 14 00:31:48 2008 +0200 [CMAN] Fix path to cman_tool Signed-off-by: Fabio M. Di Nitto <[EMAIL PROTECTED]> ----------------------------------------------------------------------- Summary of changes: cman/init.d/cman.in | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in index 55358fd..dd63b96 100644 --- a/cman/init.d/cman.in +++ b/cman/init.d/cman.in @@ -101,15 +101,15 @@ start_ccsd() start_cman() { # cman - /usr/sbin/cman_tool status &> /dev/null + /sbin/cman_tool status &> /dev/null if [ $? -ne 0 ] then - errmsg=$( /usr/sbin/cman_tool -t $CMAN_CLUSTER_TIMEOUT -w join \ + errmsg=$( /sbin/cman_tool -t $CMAN_CLUSTER_TIMEOUT -w join \ $cman_join_opts 2>&1 ) || return 1 if [ $CMAN_QUORUM_TIMEOUT -gt 0 ] then - errmsg=$( /usr/sbin/cman_tool -t $CMAN_QUORUM_TIMEOUT \ + errmsg=$( /sbin/cman_tool -t $CMAN_QUORUM_TIMEOUT \ -q wait 2>&1 ) || return 1 fi fi @@ -407,10 +407,10 @@ stop_ccsd() stop_cman() { - /usr/sbin/cman_tool status &> /dev/null + /sbin/cman_tool status &> /dev/null if [ $? -eq 0 ] then - errmsg=$( /usr/sbin/cman_tool -t $CMAN_SHUTDOWN_TIMEOUT \ + errmsg=$( /sbin/cman_tool -t $CMAN_SHUTDOWN_TIMEOUT \ -w leave $1 2>&1 ) || return 1 fi return 0 # all ok hooks/post-receive -- Cluster Project
