Puppet Class: cloudera::cdh::hadoop::client
- Defined in:
- manifests/cdh/hadoop/client.pp
Overview
Class: cloudera::cdh::hadoop::client
This class handles installing the Hadoop client packages.
Parameters:
Actions:
Requires:
Sample Usage:
class { 'cloudera::cdh::hadoop::client': }
Authors:
Mike Arnold <mike@razorsedge.org>
Copyright:
Copyright © 2013 Mike Arnold, unless otherwise noted.
23 24 25 26 27 28 |
# File 'manifests/cdh/hadoop/client.pp', line 23
class cloudera::cdh::hadoop::client {
package { 'hadoop-client':
ensure => 'present',
tag => 'cloudera-cdh4',
}
}
|