You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2016/07/29 17:03:13 UTC

[32/51] [abbrv] bigtop git commit: BIGTOP-2475: hadoop_pig puppet module needs hadoop::common

BIGTOP-2475: hadoop_pig puppet module needs hadoop::common


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/8efa7791
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/8efa7791
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/8efa7791

Branch: refs/heads/BIGTOP-2253
Commit: 8efa779116eae0430ac173c5f1c7d44d4e13ef0b
Parents: 85a2bdd
Author: Kevin W Monroe <ke...@canonical.com>
Authored: Wed Jun 8 15:18:45 2016 +0000
Committer: Olaf Flebbe <of...@oflebbe.de>
Committed: Thu Jun 16 19:44:50 2016 +0200

----------------------------------------------------------------------
 bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/8efa7791/bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp
----------------------------------------------------------------------
diff --git a/bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp b/bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp
index 0a09dec..9582ffd 100644
--- a/bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/hadoop_pig/manifests/init.pp
@@ -22,11 +22,13 @@ class hadoop_pig {
   }
 
   class client {
+    include hadoop::common
+
     package { "pig":
       ensure => latest,
       require => Package["hadoop"],
-    } 
- 
+    }
+
     file { "/etc/pig/conf/pig.properties":
       content => template('hadoop_pig/pig.properties'),
       require => Package["pig"],