Puppet Class: cloudera::cdh::bigtop
- Defined in:
- manifests/cdh/bigtop.pp
Overview
Class: cloudera::cdh::bigtop
This class installs the BigTop packages.
Parameters:
Actions:
Requires:
Sample Usage:
class { 'cloudera::cdh::bigtop': }
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 34 35 36 37 38 |
# File 'manifests/cdh/bigtop.pp', line 23
class cloudera::cdh::bigtop {
package { 'bigtop-jsvc':
ensure => 'present',
tag => 'cloudera-cdh4',
}
package { 'bigtop-tomcat':
ensure => 'present',
tag => 'cloudera-cdh4',
}
package { 'bigtop-utils':
ensure => 'present',
tag => 'cloudera-cdh4',
}
}
|