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 037C4173D3 for ; Thu, 9 Apr 2015 16:19:19 +0000 (UTC) Received: (qmail 80691 invoked by uid 500); 9 Apr 2015 16:19:13 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 80588 invoked by uid 500); 9 Apr 2015 16:19:13 -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 80562 invoked by uid 99); 9 Apr 2015 16:19:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Apr 2015 16:19:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BF5C6DFFEF; Thu, 9 Apr 2015 16:19:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Thu, 09 Apr 2015 16:19:14 -0000 Message-Id: <05454e3c7bc24b1e8225309348520ef9@git.apache.org> In-Reply-To: <1d36fc2cd93c4b0dab8eff98b7e34d4a@git.apache.org> References: <1d36fc2cd93c4b0dab8eff98b7e34d4a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] accumulo git commit: ACCUMULO-3719 Add StrictHostKeyChecking=no to default SSH options ACCUMULO-3719 Add StrictHostKeyChecking=no to default SSH options For testing purposes, strict host key verification is probably overkill. Disable it by default. Users can still override this on their own if they are concerned about security implications. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6605ad41 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6605ad41 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6605ad41 Branch: refs/heads/master Commit: 6605ad415a834a0c5881c7ea526dd5ff42ebfb86 Parents: 29c82db Author: Josh Elser Authored: Thu Apr 9 12:03:32 2015 -0400 Committer: Josh Elser Committed: Thu Apr 9 12:03:32 2015 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/cluster/RemoteShellOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/6605ad41/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java ---------------------------------------------------------------------- diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java index 714096e..822cb82 100644 --- a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java +++ b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java @@ -41,7 +41,7 @@ public class RemoteShellOptions { public static final String SSH_COMMAND_DEFAULT = "/usr/bin/ssh"; public static final String SSH_OPTIONS_KEY = SSH_PREFIX + "options"; - public static final String SSH_OPTIONS_DEFAULT = ""; + public static final String SSH_OPTIONS_DEFAULT = "-o StrictHostKeyChecking=no"; public static final String SSH_USER_KEY = SSH_PREFIX + "user"; public static final String SSH_USER_DEFAULT = "";