Puppet Class: cloudera::cdh::hcatalog
- Defined in:
- manifests/cdh/hcatalog.pp
Overview
Class: cloudera::cdh::hcatalog
This class installes HCatalog.
Parameters:
Actions:
Requires:
Sample Usage:
class { 'cloudera::cdh::hcatalog': }
Authors:
Mike Arnold <mike@razorsedge.org>
Copyright:
Copyright © 2013 Mike Arnold, unless otherwise noted.
23 24 25 26 27 28 29 30 31 32 33 |
# File 'manifests/cdh/hcatalog.pp', line 23
class cloudera::cdh::hcatalog {
package { 'hcatalog':
ensure => 'present',
tag => 'cloudera-cdh4',
}
package { 'webhcat':
ensure => 'present',
tag => 'cloudera-cdh4',
}
}
|