Puppet Class: foreman::plugin::rh_cloud
- Defined in:
- manifests/plugin/rh_cloud.pp
Summary
Installs rh_cloud pluginOverview
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/plugin/rh_cloud.pp', line 6
class foreman::plugin::rh_cloud (
Boolean $enable_iop_advisor_engine = false,
) {
foreman::plugin { 'rh_cloud':
config => epp('foreman/rh_cloud.yaml.epp', { 'enable_iop_advisor_engine' => $enable_iop_advisor_engine }),
}
class { 'iop_advisor_engine':
ensure => bool2str($enable_iop_advisor_engine, 'present', 'absent'),
foreman_url => $foreman::foreman_url,
}
}
|