Return-Path: X-Original-To: apmail-brooklyn-commits-archive@minotaur.apache.org Delivered-To: apmail-brooklyn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6D0A3114D2 for ; Mon, 1 Sep 2014 16:55:57 +0000 (UTC) Received: (qmail 25942 invoked by uid 500); 1 Sep 2014 16:55:57 -0000 Delivered-To: apmail-brooklyn-commits-archive@brooklyn.apache.org Received: (qmail 25908 invoked by uid 500); 1 Sep 2014 16:55:57 -0000 Mailing-List: contact commits-help@brooklyn.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.incubator.apache.org Delivered-To: mailing list commits@brooklyn.incubator.apache.org Received: (qmail 25876 invoked by uid 99); 1 Sep 2014 16:55:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Sep 2014 16:55:57 +0000 X-ASF-Spam-Status: No, hits=-2001.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 Sep 2014 16:55:34 +0000 Received: (qmail 25531 invoked by uid 99); 1 Sep 2014 16:55:32 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Sep 2014 16:55:32 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 896D4957DD2; Mon, 1 Sep 2014 16:55:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: heneveld@apache.org To: commits@brooklyn.incubator.apache.org Date: Mon, 01 Sep 2014 16:55:40 -0000 Message-Id: In-Reply-To: <0ca4909fc9864f3e85f9dfc5e86bb5df@git.apache.org> References: <0ca4909fc9864f3e85f9dfc5e86bb5df@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/11] git commit: Installs python-httplib2 (required when running on docker container) X-Virus-Checked: Checked by ClamAV on apache.org Installs python-httplib2 (required when running on docker container) Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/ea8283ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/ea8283ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/ea8283ef Branch: refs/heads/master Commit: ea8283efde743fc7497a86c27acc4bb1dbe5739a Parents: 92672c4 Author: Martin Harris Authored: Mon Sep 1 17:37:29 2014 +0100 Committer: Martin Harris Committed: Mon Sep 1 17:37:29 2014 +0100 ---------------------------------------------------------------------- .../brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/ea8283ef/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java ---------------------------------------------------------------------- diff --git a/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java b/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java index 3269aad..56a8623 100644 --- a/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java +++ b/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java @@ -101,6 +101,8 @@ public class CouchbaseNodeSshDriver extends AbstractSoftwareProcessSshDriver imp "export DEBIAN_FRONTEND=noninteractive", "which apt-get", sudo("apt-get update"), + // The following line is required to run on Docker container + sudo("apt-get install -y python-httplib2"), sudo("apt-get install -y libssl0.9.8"), sudo(format("dpkg -i %s", saveAs)));