Puppet Class: psick::foreman
- Defined in:
- manifests/foreman.pp
Overview
This class manages the installation and initialisation of foreman
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'manifests/foreman.pp', line 10
class psick::foreman (
Optional[String] $install_class = 'tp_profile::foreman',
Boolean $manage = $::psick::manage,
Boolean $noop_manage = $::psick::noop_manage,
Boolean $noop_value = $::psick::noop_value,
) {
if $manage {
if $noop_manage {
noop($noop_value)
}
if $install_class { contain $install_class }
}
}
|