aboutsummaryrefslogtreecommitdiff
path: root/bigtop-deploy/puppet/manifests/cluster.pp
diff options
context:
space:
mode:
authorYoungWoo Kim <ywkim@apache.org>2015-05-20 15:30:02 +0900
committerEvans Ye <evansye@apache.org>2015-05-23 12:06:04 +0000
commite7154397bc3ccdf9d3b552337d4c4963768da503 (patch)
tree5966d052f1d19dd1f3138a23baff6e50cfe4ed0a /bigtop-deploy/puppet/manifests/cluster.pp
parent46d0a72399c12cca98e9bac7e354e5cb18ec78be (diff)
BIGTOP-1876. Update puppet recipes for Sqoop2
Signed-off-by: Evans Ye <evansye@apache.org>
Diffstat (limited to 'bigtop-deploy/puppet/manifests/cluster.pp')
-rw-r--r--bigtop-deploy/puppet/manifests/cluster.pp9
1 files changed, 6 insertions, 3 deletions
diff --git a/bigtop-deploy/puppet/manifests/cluster.pp b/bigtop-deploy/puppet/manifests/cluster.pp
index 35ef1956..77cbbcfa 100644
--- a/bigtop-deploy/puppet/manifests/cluster.pp
+++ b/bigtop-deploy/puppet/manifests/cluster.pp
@@ -161,8 +161,8 @@ class standby_head_node inherits hadoop_cluster_node {
}
class hadoop_gateway_node inherits hadoop_cluster_node {
- if ($all or "sqoop" in $components) {
- include hadoop-sqoop::server
+ if ($all or "sqoop2" in $components) {
+ include sqoop2::server
}
if ($all or "httpfs" in $components) {
@@ -196,8 +196,11 @@ class hadoop_gateway_node inherits hadoop_cluster_node {
if ($all or "hive" in $components) {
include hadoop-hive::client
}
+ if ($all or "sqoop2" in $components) {
+ include sqoop2::client
+ }
if ($all or "sqoop" in $components) {
- include hadoop-sqoop::client
+ include sqoop::client
}
if ($all or "oozie" in $components) {
include hadoop-oozie::client