Puppet Class: cloudera::cdh::hue::plugins
- Defined in:
- manifests/cdh/hue/plugins.pp
Overview
Class: cloudera::cdh::hue::plugins
This class installes the HUE plugins.
Parameters:
Actions:
Requires:
Sample Usage:
class { 'cloudera::cdh::hue::plugins': }
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 |
# File 'manifests/cdh/hue/plugins.pp', line 23
class cloudera::cdh::hue::plugins {
package { 'hue-plugins':
ensure => 'present',
tag => 'cloudera-cdh4',
}
# CDH 4.1.1 had the required file in hue-plugins. In CDH 4.1.2 said file
# becomes a symlink to a file in hue-common.
package { 'hue-common':
ensure => 'present',
tag => 'cloudera-cdh4',
}
}
|