Puppet Class: cis_benchmark::trusty64::services::inetd
- Defined in:
- manifests/trusty64/services/inetd.pp
Overview
8 9 10 11 12 13 14 15 |
# File 'manifests/trusty64/services/inetd.pp', line 8
class cis_benchmark::trusty64::services::inetd {
## ensure inetd disabled
if ($inetd_installed == 'true') {
service { 'inetd':
ensure => stopped,
}
}
}
|