From b1ecd645acbb4364410ee5ccb6768b7e156817e2 Mon Sep 17 00:00:00 2001 From: Kevin Date: Tue, 25 Aug 2015 21:09:56 +0000 Subject: [PATCH] ubuntu deploy scripts: change process start failed message in verify-master() and verify-minion() --- cluster/ubuntu/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/ubuntu/util.sh b/cluster/ubuntu/util.sh index 7e29ab5a317..951ad0cadb9 100755 --- a/cluster/ubuntu/util.sh +++ b/cluster/ubuntu/util.sh @@ -166,7 +166,7 @@ function verify-master(){ validated="1" ((try_count=try_count+1)) if [[ ${try_count} -gt ${max_try_count} ]]; then - printf "\nWarning: Process \"${daemon}\" status check timeout, please check manually.\n" + printf "\nWarning: Process \"${daemon}\" failed to run on ${MASTER}, please check.\n" exit 1 fi sleep 2 @@ -193,7 +193,7 @@ function verify-minion(){ validated="1" ((try_count=try_count+1)) if [[ ${try_count} -gt ${max_try_count} ]]; then - printf "\nWarning: Process \"${daemon}\" status check timeout, please check manually.\n" + printf "\nWarning: Process \"${daemon}\" failed to run on ${1}, please check.\n" exit 1 fi sleep 2