Repository: incubator-blur Updated Branches: refs/heads/master ecbb26b9f -> b1d1baa85
Fixed BLUR-357: Added the console start and stop to the start-all and stop-all scripts Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/b1d1baa8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/b1d1baa8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/b1d1baa8 Branch: refs/heads/master Commit: b1d1baa85e34f9fc46cdc91265673156581de034 Parents: ecbb26b Author: Chris Rohr <[email protected]> Authored: Tue Aug 26 07:30:57 2014 -0400 Committer: Chris Rohr <[email protected]> Committed: Tue Aug 26 07:30:57 2014 -0400 ---------------------------------------------------------------------- distribution/src/main/scripts/bin/start-all.sh | 3 ++- distribution/src/main/scripts/bin/stop-all.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/b1d1baa8/distribution/src/main/scripts/bin/start-all.sh ---------------------------------------------------------------------- diff --git a/distribution/src/main/scripts/bin/start-all.sh b/distribution/src/main/scripts/bin/start-all.sh index ad81155..580262b 100755 --- a/distribution/src/main/scripts/bin/start-all.sh +++ b/distribution/src/main/scripts/bin/start-all.sh @@ -24,4 +24,5 @@ if [ "$BLUR_MANAGE_ZK" == "true" ]; then $BLUR_HOME/bin/start-zookeepers.sh fi $BLUR_HOME/bin/start-shards.sh -$BLUR_HOME/bin/start-controllers.sh \ No newline at end of file +$BLUR_HOME/bin/start-controllers.sh +$BLUR_HOME/bin/start-consoles.sh http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/b1d1baa8/distribution/src/main/scripts/bin/stop-all.sh ---------------------------------------------------------------------- diff --git a/distribution/src/main/scripts/bin/stop-all.sh b/distribution/src/main/scripts/bin/stop-all.sh index f84625a..83be844 100755 --- a/distribution/src/main/scripts/bin/stop-all.sh +++ b/distribution/src/main/scripts/bin/stop-all.sh @@ -20,6 +20,7 @@ bin=`cd "$bin"; pwd` . "$bin"/blur-config.sh +$BLUR_HOME/bin/stop-consoles.sh $BLUR_HOME/bin/stop-controllers.sh $BLUR_HOME/bin/stop-shards.sh if [ "$BLUR_MANAGE_ZK" == "true" ]; then
