Updated Branches: refs/heads/master 1ec9f8f8d -> 63c5d64cb
ACCUMULO-1698, have stop-here use system+aliased hostname Signed-off-by: Josh Elser <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/ac4a027b Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/ac4a027b Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/ac4a027b Branch: refs/heads/master Commit: ac4a027b42ebe66fd184f8b0792272e4bdb86f8e Parents: da95fd6 Author: Alex Moundalexis <[email protected]> Authored: Fri Sep 6 16:44:20 2013 -0400 Committer: Josh Elser <[email protected]> Committed: Tue Sep 10 21:12:58 2013 -0400 ---------------------------------------------------------------------- bin/stop-here.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/ac4a027b/bin/stop-here.sh ---------------------------------------------------------------------- diff --git a/bin/stop-here.sh b/bin/stop-here.sh index f7fbad0..315bbc6 100755 --- a/bin/stop-here.sh +++ b/bin/stop-here.sh @@ -30,7 +30,7 @@ if grep -q localhost $ACCUMULO_CONF_DIR/slaves then $bin/accumulo admin stop localhost else - for host in `hostname -a` + for host in "`hostname -a` `hostname`" do if grep -q $host $ACCUMULO_CONF_DIR/slaves then
