aboutsummaryrefslogtreecommitdiff
path: root/bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp')
-rw-r--r--bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp b/bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp
index a168e341..fb1de968 100644
--- a/bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/hadoop_hbase/manifests/init.pp
@@ -36,14 +36,14 @@ class hadoop_hbase {
}
}
- class client-package {
+ class client_package {
package { "hbase":
ensure => latest,
- }
+ }
}
class common_config ($rootdir, $zookeeper_quorum, $kerberos_realm = "", $heap_size="1024") {
- include client-package
+ include hadoop_hbase::client_package
if ($kerberos_realm) {
require kerberos::client
kerberos::host_keytab { "hbase":
@@ -68,7 +68,7 @@ class hadoop_hbase {
}
class client($thrift = false) {
- include common_config
+ include hadoop_hbase::common_config
if ($thrift) {
package { "hbase-thrift":
@@ -87,7 +87,7 @@ class hadoop_hbase {
}
class server {
- include common_config
+ include hadoop_hbase::common_config
package { "hbase-regionserver":
ensure => latest,
@@ -104,7 +104,7 @@ class hadoop_hbase {
}
class master {
- include common_config
+ include hadoop_hbase::common_config
package { "hbase-master":
ensure => latest,