Puppet Class: hbase::frontend::config
- Defined in:
- manifests/frontend/config.pp
Overview
Class hbase::frontend::config
Configuration for HBase client.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/frontend/config.pp', line 5
class hbase::frontend::config {
contain hbase::common::config
if $hbase::external_zookeeper {
contain hbase::common::keytab
}
file {'/var/lib/hbase/local':
ensure => 'directory',
owner => 'hbase',
group => 'hbase',
}
->
file {'/var/lib/hbase/local/jars':
ensure => 'directory',
owner => 'hbase',
group => 'hbase',
}
}
|