Repository: hbase Updated Branches: refs/heads/branch-1 66adeb304 -> a4f445b20
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/a4f445b2 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a4f445b2 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a4f445b2 Branch: refs/heads/branch-1 Commit: a4f445b20e9195be010b6eea972aaa75091b534c Parents: 66adeb3 Author: tedyu <[email protected]> Authored: Sun Nov 29 13:11:31 2015 -0800 Committer: tedyu <[email protected]> Committed: Sun Nov 29 13:11:31 2015 -0800 ---------------------------------------------------------------------- bin/graceful_stop.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/a4f445b2/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
