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 01170107D9 for ; Thu, 8 Aug 2013 15:34:01 +0000 (UTC) Received: (qmail 11155 invoked by uid 500); 8 Aug 2013 15:34:00 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 11074 invoked by uid 500); 8 Aug 2013 15:33:56 -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 11046 invoked by uid 99); 8 Aug 2013 15:33:53 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Aug 2013 15:33:53 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3EDF1835F6D; Thu, 8 Aug 2013 15:33:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: ACCUMULO-1634 Improve stop-all messages Date: Thu, 8 Aug 2013 15:33:53 +0000 (UTC) Updated Branches: refs/heads/master 0df5081d0 -> d0fe7e60a ACCUMULO-1634 Improve stop-all messages Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/d0fe7e60 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/d0fe7e60 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/d0fe7e60 Branch: refs/heads/master Commit: d0fe7e60aca3cb77597a46a81164c29518ebb2f2 Parents: 0df5081 Author: Christopher Tubbs Authored: Thu Aug 8 11:33:06 2013 -0400 Committer: Christopher Tubbs Committed: Thu Aug 8 11:33:06 2013 -0400 ---------------------------------------------------------------------- bin/stop-all.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/d0fe7e60/bin/stop-all.sh ---------------------------------------------------------------------- diff --git a/bin/stop-all.sh b/bin/stop-all.sh index 348d067..30c00b7 100755 --- a/bin/stop-all.sh +++ b/bin/stop-all.sh @@ -33,13 +33,14 @@ ${bin}/accumulo admin "$@" stopAll if [ $? -ne 0 ]; then echo "Invalid password or unable to connect to the master" - echo "Press Ctrl-C to cancel now, or force shutdown in 15 seconds" + echo "Initiating forced shutdown in 15 seconds (Ctrl-C to abort)" sleep 10 + echo "Initiating forced shutdown in 5 seconds (Ctrl-C to abort)" else echo "Accumulo shut down cleanly" + echo "Utilities and unresponsive servers will shut down in 5 seconds (Ctrl-C to abort)" fi -echo "Utilities and unresponsive servers will be shut down in 5 seconds" sleep 5 #look for master and gc processes not killed by 'admin stopAll'