Return-Path: X-Original-To: apmail-bigtop-commits-archive@www.apache.org Delivered-To: apmail-bigtop-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 8B05B18426 for ; Thu, 17 Mar 2016 18:37:55 +0000 (UTC) Received: (qmail 90980 invoked by uid 500); 17 Mar 2016 18:37:55 -0000 Delivered-To: apmail-bigtop-commits-archive@bigtop.apache.org Received: (qmail 90942 invoked by uid 500); 17 Mar 2016 18:37:55 -0000 Mailing-List: contact commits-help@bigtop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: bigtop-dev@bigtop.apache.org Delivered-To: mailing list commits@bigtop.apache.org Received: (qmail 90927 invoked by uid 99); 17 Mar 2016 18:37:55 -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, 17 Mar 2016 18:37:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3AE7CDFBDB; Thu, 17 Mar 2016 18:37:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cos@apache.org To: commits@bigtop.apache.org Date: Thu, 17 Mar 2016 18:37:54 -0000 Message-Id: <3b379650d73245299dea6541a797bc1f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] bigtop git commit: BIGTOP-2325. Deployment recipes for HAWQ Repository: bigtop Updated Branches: refs/heads/BIGTOP-2320 9de53a37f -> 3cee57abc BIGTOP-2325. Deployment recipes for HAWQ type in the template name Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/b2508fb0 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/b2508fb0 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/b2508fb0 Branch: refs/heads/BIGTOP-2320 Commit: b2508fb002d7f87d88041e7af2504201b029996c Parents: 9de53a3 Author: Cos Authored: Wed Mar 16 20:31:51 2016 -0500 Committer: Cos Committed: Wed Mar 16 21:44:39 2016 -0500 ---------------------------------------------------------------------- bigtop-deploy/puppet/modules/hawq/manifests/init.pp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/b2508fb0/bigtop-deploy/puppet/modules/hawq/manifests/init.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/hawq/manifests/init.pp b/bigtop-deploy/puppet/modules/hawq/manifests/init.pp index 39ecb34..1c499ab 100644 --- a/bigtop-deploy/puppet/modules/hawq/manifests/init.pp +++ b/bigtop-deploy/puppet/modules/hawq/manifests/init.pp @@ -74,7 +74,7 @@ class hawq { file { "/etc/sysctl.conf": # TODO overriding sysctl might be a somewhat dangerous, let's figure something better - content => template('hawq/ysysctl.conf'), + content => template('hawq/sysctl.conf'), } exec { "sysctl reset": path => ['/usr/sbin'], @@ -96,8 +96,13 @@ class hawq { ## but I don't think it matter, and for sure looks ugly } + package { "epel-release": + ensure => latest, + } + package { "python-pip": ensure => latest, + require => [ Package['epel-release'] ], } package { "pychecker": ensure => latest,