You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2015/05/22 02:54:34 UTC

[04/14] accumulo git commit: ACCUMULO-3538 remove references to logger in scripts

ACCUMULO-3538 remove references to logger in scripts


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/14258a29
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/14258a29
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/14258a29

Branch: refs/heads/1.7
Commit: 14258a291d33493924b21891c55dd216af4b6c61
Parents: e395bc8
Author: Christopher Tubbs <ct...@apache.org>
Authored: Thu May 21 17:37:48 2015 -0400
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Thu May 21 17:37:48 2015 -0400

----------------------------------------------------------------------
 bin/accumulo     | 1 -
 bin/stop-here.sh | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/14258a29/bin/accumulo
----------------------------------------------------------------------
diff --git a/bin/accumulo b/bin/accumulo
index 75ba63f..fdb7454 100755
--- a/bin/accumulo
+++ b/bin/accumulo
@@ -75,7 +75,6 @@ master)  export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_MASTER_OPTS}"
 gc)      export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_GC_OPTS}" ;;
 tserver) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_TSERVER_OPTS}" ;;
 monitor) export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_MONITOR_OPTS}" ;;
-logger)  export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_LOGGER_OPTS}" ;;
 *)       export ACCUMULO_OPTS="${ACCUMULO_GENERAL_OPTS} ${ACCUMULO_OTHER_OPTS}" ;;
 esac
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/14258a29/bin/stop-here.sh
----------------------------------------------------------------------
diff --git a/bin/stop-here.sh b/bin/stop-here.sh
index 4d5533a..49defa9 100755
--- a/bin/stop-here.sh
+++ b/bin/stop-here.sh
@@ -50,7 +50,7 @@ else
 fi
 
 for signal in TERM KILL; do
-   for svc in tserver gc master monitor logger tracer; do
+   for svc in tserver gc master monitor tracer; do
       PID=$(ps -ef | egrep ${ACCUMULO} | grep "Main $svc" | grep -v grep | grep -v stop-here.sh | awk '{print $2}' | head -1)
       if [ ! -z $PID ]; then
          echo "Stopping ${svc} on ${HOSTNAME} with signal ${signal}"