Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8963A200C67 for ; Mon, 15 May 2017 14:09:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 865F6160BD0; Mon, 15 May 2017 12:09:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 00614160BC1 for ; Mon, 15 May 2017 14:09:05 +0200 (CEST) Received: (qmail 6389 invoked by uid 500); 15 May 2017 12:09:00 -0000 Mailing-List: contact dev-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list dev@brooklyn.apache.org Received: (qmail 6309 invoked by uid 99); 15 May 2017 12:08:59 -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; Mon, 15 May 2017 12:08:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BA227E0016; Mon, 15 May 2017 12:08:59 +0000 (UTC) From: aledsage To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-server pull request #680: Adds JcloudsLocationCustomizer hook to al... Content-Type: text/plain Message-Id: <20170515120859.BA227E0016@git1-us-west.apache.org> Date: Mon, 15 May 2017 12:08:59 +0000 (UTC) archived-at: Mon, 15 May 2017 12:09:06 -0000 Github user aledsage commented on a diff in the pull request: https://github.com/apache/brooklyn-server/pull/680#discussion_r116472840 --- Diff: core/src/main/java/org/apache/brooklyn/util/core/internal/ssh/SshTool.java --- @@ -86,6 +86,8 @@ public static final ConfigKey PROP_LAST_MODIFICATION_DATE = newConfigKey("lastModificationDate", "Last-modification-date to be set on files copied/created (should be UTC/1000, ie seconds since 1970; default 0 usually means current)", 0L); public static final ConfigKey PROP_LAST_ACCESS_DATE = newConfigKey("lastAccessDate", "Last-access-date to be set on files copied/created (should be UTC/1000, ie seconds since 1970; default 0 usually means lastModificationDate)", 0L); public static final ConfigKey PROP_OWNER_UID = newConfigKey("ownerUid", "Default owner UID (not username) for files created on remote machine; default is unset", -1); + + ConfigKey ADDITIONAL_CONNECTION_METADATA = newStringConfigKey("additional.connection.metadata", "Can be used by a location customizer during provisioning to provide additional information, which in turn can be consumed by a custom ssh tool"); --- End diff -- Split onto multiple lines. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---