Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4F5101823B for ; Mon, 7 Dec 2015 16:56:18 +0000 (UTC) Received: (qmail 15315 invoked by uid 500); 7 Dec 2015 16:55:39 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 14898 invoked by uid 500); 7 Dec 2015 16:55:38 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 14491 invoked by uid 99); 7 Dec 2015 16:55:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Dec 2015 16:55:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 40EB7E05D3; Mon, 7 Dec 2015 16:55:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: syuanjiang@apache.org To: commits@hbase.apache.org Date: Mon, 07 Dec 2015 16:55:42 -0000 Message-Id: <6a1d41dd9d6549f7a089436a188ff92f@git.apache.org> In-Reply-To: <1d30bbd516af4c64b652d7945355f8fa@git.apache.org> References: <1d30bbd516af4c64b652d7945355f8fa@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/50] [abbrv] hbase git commit: HBASE-14531 graceful_stop.sh "if [ \"$local\" ]" condition unexpected behaviour (Samir Ahmic) HBASE-14531 graceful_stop.sh "if [ \"$local\" ]" condition unexpected behaviour (Samir Ahmic) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/71d41e0c Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/71d41e0c Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/71d41e0c Branch: refs/heads/hbase-12439 Commit: 71d41e0c9c286b4bed9cc6d5560a14268f9b1de9 Parents: 3bac31b Author: tedyu Authored: Sun Nov 29 13:10:00 2015 -0800 Committer: tedyu Committed: Sun Nov 29 13:10:00 2015 -0800 ---------------------------------------------------------------------- bin/graceful_stop.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/71d41e0c/bin/graceful_stop.sh ---------------------------------------------------------------------- diff --git a/bin/graceful_stop.sh b/bin/graceful_stop.sh index 4cef513..43fbf0b 100755 --- a/bin/graceful_stop.sh +++ b/bin/graceful_stop.sh @@ -104,7 +104,7 @@ hosts="/tmp/$(basename $0).$$.tmp" echo $hostname >> $hosts if [ "$thrift" != "" ]; then log "Stopping thrift server on $hostname" - if [ "$local" ]; then + if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} stop thrift else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop thrift @@ -112,21 +112,21 @@ if [ "$thrift" != "" ]; then fi if [ "$rest" != "" ]; then log "Stopping rest server on $hostname" - if [ "$local" ]; then + if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} stop rest else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop rest fi fi log "Stopping regionserver on $hostname" -if [ "$local" ]; then +if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} stop regionserver else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} stop regionserver fi if [ "$restart" != "" ]; then log "Restarting regionserver on $hostname" - if [ "$local" ]; then + if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} start regionserver else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start regionserver @@ -134,7 +134,7 @@ if [ "$restart" != "" ]; then if [ "$thrift" != "" ]; then log "Restarting thrift server on $hostname" # -b 0.0.0.0 says listen on all interfaces rather than just default. - if [ "$local" ]; then + if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} start thrift -b 0.0.0.0 else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start thrift -b 0.0.0.0 @@ -142,7 +142,7 @@ if [ "$restart" != "" ]; then fi if [ "$rest" != "" ]; then log "Restarting rest server on $hostname" - if [ "$local" ]; then + if [ "$local" == true ]; then "$bin"/hbase-daemon.sh --config ${HBASE_CONF_DIR} start rest else "$bin"/hbase-daemons.sh --config ${HBASE_CONF_DIR} --hosts ${hosts} start rest