Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-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 0AEC2F46F for ; Tue, 23 Apr 2013 18:00:41 +0000 (UTC) Received: (qmail 69857 invoked by uid 500); 23 Apr 2013 18:00:40 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 69827 invoked by uid 500); 23 Apr 2013 18:00:40 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 69819 invoked by uid 99); 23 Apr 2013 18:00:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Apr 2013 18:00:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Apr 2013 18:00:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3CC612388ABA; Tue, 23 Apr 2013 18:00:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1471076 - in /accumulo/trunk: ./ assemble/ assemble/scripts/ Date: Tue, 23 Apr 2013 18:00:18 -0000 To: commits@accumulo.apache.org From: vines@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130423180019.3CC612388ABA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vines Date: Tue Apr 23 18:00:18 2013 New Revision: 1471076 URL: http://svn.apache.org/r1471076 Log: ACCUMULO-792 - slave-only isn't needed anymore and making them quieter Removed: accumulo/trunk/assemble/scripts/slave-only-init.sh Modified: accumulo/trunk/ (props changed) accumulo/trunk/assemble/ (props changed) accumulo/trunk/assemble/scripts/gc-only-init.sh accumulo/trunk/assemble/scripts/master-only-init.sh accumulo/trunk/assemble/scripts/monitor-only-init.sh accumulo/trunk/assemble/scripts/tracer-only-init.sh accumulo/trunk/assemble/scripts/tserver-only-init.sh Propchange: accumulo/trunk/ ------------------------------------------------------------------------------ Merged /accumulo/branches/1.5:r1471075 Propchange: accumulo/trunk/assemble/ ------------------------------------------------------------------------------ Merged /accumulo/branches/1.5/assemble:r1471075 Modified: accumulo/trunk/assemble/scripts/gc-only-init.sh URL: http://svn.apache.org/viewvc/accumulo/trunk/assemble/scripts/gc-only-init.sh?rev=1471076&r1=1471075&r2=1471076&view=diff ============================================================================== --- accumulo/trunk/assemble/scripts/gc-only-init.sh (original) +++ accumulo/trunk/assemble/scripts/gc-only-init.sh Tue Apr 23 18:00:18 2013 @@ -38,10 +38,10 @@ fi install -m 0755 -o root -g root init.d/accumulo-gc /etc/init.d/ -if [ -e "`which update-rc.d`" ]; then +if which update-rc.d >>/dev/null 2>&1; then update-rc.d accumulo-gc start 21 2 3 4 5 . stop 20 0 1 6 . -elif [ -e "`which chkconfig`" ]; then - chkconfig --add accumulo-gc +elif which chkconfig >>/dev/null 2>&1; then + chkconfig --add accumulo-gc else echo "No update-rc.d or chkconfig, rc levels not set for accumulo-gc" fi Modified: accumulo/trunk/assemble/scripts/master-only-init.sh URL: http://svn.apache.org/viewvc/accumulo/trunk/assemble/scripts/master-only-init.sh?rev=1471076&r1=1471075&r2=1471076&view=diff ============================================================================== --- accumulo/trunk/assemble/scripts/master-only-init.sh (original) +++ accumulo/trunk/assemble/scripts/master-only-init.sh Tue Apr 23 18:00:18 2013 @@ -37,10 +37,10 @@ if ! id -u accumulo >/dev/null 2>&1; the fi install -m 0755 -o root -g root init.d/accumulo-master /etc/init.d/ -if [ -e "`which update-rc.d`" ]; then +if which update-rc.d >>/dev/null 2>&1; then update-rc.d accumulo-master start 21 2 3 4 5 . stop 19 0 1 6 . -elif [ -e "`which chkconfig`" ]; then - chkconfig --add accumulo-master +elif which chkconfig >>/dev/null 2>&1; then + chkconfig --add accumulo-master else echo "No update-rc.d or chkconfig, rc levels not set for accumulo-master" fi Modified: accumulo/trunk/assemble/scripts/monitor-only-init.sh URL: http://svn.apache.org/viewvc/accumulo/trunk/assemble/scripts/monitor-only-init.sh?rev=1471076&r1=1471075&r2=1471076&view=diff ============================================================================== --- accumulo/trunk/assemble/scripts/monitor-only-init.sh (original) +++ accumulo/trunk/assemble/scripts/monitor-only-init.sh Tue Apr 23 18:00:18 2013 @@ -36,9 +36,9 @@ if ! id -u accumulo_monitor >/dev/null 2 fi install -m 0755 -o root -g root init.d/accumulo-monitor /etc/init.d/ -if [ -e "`which update-rc.d`" ]; then +if which update-rc.d >>/dev/null 2>&1; then update-rc.d accumulo-monitor start 21 2 3 4 5 . stop 20 0 1 6 . -elif [ -e "`which chkconfig`" ]; then +elif which chkconfig >>/dev/null 2>&1; then chkconfig --add accumulo-monitor else echo "No update-rc.d or chkconfig, rc levels not set for accumulo-monitor" Modified: accumulo/trunk/assemble/scripts/tracer-only-init.sh URL: http://svn.apache.org/viewvc/accumulo/trunk/assemble/scripts/tracer-only-init.sh?rev=1471076&r1=1471075&r2=1471076&view=diff ============================================================================== --- accumulo/trunk/assemble/scripts/tracer-only-init.sh (original) +++ accumulo/trunk/assemble/scripts/tracer-only-init.sh Tue Apr 23 18:00:18 2013 @@ -36,9 +36,9 @@ if ! id -u accumulo_tracer >/dev/null 2> fi install -m 0755 -o root -g root init.d/accumulo-tracer /etc/init.d/ -if [ -e "`which update-rc.d`" ]; then +if which update-rc.d >>/dev/null 2>&1; then update-rc.d accumulo-tracer start 22 2 3 4 5 . stop 20 0 1 6 . -elif [ -e "`which chkconfig`" ]; then +elif which chkconfig >>/dev/null 2>&1; then chkconfig --add accumulo-tracer else echo "No update-rc.d or chkconfig, rc levels not set for accumulo-tracer" Modified: accumulo/trunk/assemble/scripts/tserver-only-init.sh URL: http://svn.apache.org/viewvc/accumulo/trunk/assemble/scripts/tserver-only-init.sh?rev=1471076&r1=1471075&r2=1471076&view=diff ============================================================================== --- accumulo/trunk/assemble/scripts/tserver-only-init.sh (original) +++ accumulo/trunk/assemble/scripts/tserver-only-init.sh Tue Apr 23 18:00:18 2013 @@ -37,9 +37,9 @@ if ! id -u accumulo >/dev/null 2>&1; the fi install -m 0755 -o root -g root init.d/accumulo-tserver /etc/init.d/ -if [ -e "`which update-rc.d`" ]; then +if which update-rc.d >>/dev/null 2>&1; then update-rc.d accumulo-tserver start 21 2 3 4 5 . stop 15 0 1 6 . -elif [ -e "`which chkconfig`" ]; then +elif which chkconfig >>/dev/null 2>&1; then chkconfig --add accumulo-tserver else echo "No update-rc.d or chkconfig, rc levels not set for accumulo-tserver"