Puppet Class: aix_tidy::disable_chrctcp
- Defined in:
- manifests/disable_chrctcp.pp
Overview
Aix_tidy::Disable_chrctcp
Disable specified services using the chrctcp module, see forge.puppet.com/geoffwilliams/chrctcp/readme
6 7 8 9 10 11 12 13 |
# File 'manifests/disable_chrctcp.pp', line 6
class aix_tidy::disable_chrctcp(
Array[String] $disable = []
) {
chrctcp { $disable:
ensure => 'disabled',
}
}
|