Repository: bigtop Updated Branches: refs/heads/master 85a2bdd9b -> 8efa77911
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/master Commit: 8efa779116eae0430ac173c5f1c7d44d4e13ef0b Parents: 85a2bdd Author: Kevin W Monroe <[email protected]> Authored: Wed Jun 8 15:18:45 2016 +0000 Committer: Olaf Flebbe <[email protected]> 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"],
