Puppet Class: secure_windows::stig::v73293
- Defined in:
- manifests/stig/v73293.pp
Overview
This class manages V-73293 Simple TCP/IP Services must not be installed.
3 4 5 6 7 8 9 10 11 |
# File 'manifests/stig/v73293.pp', line 3
class secure_windows::stig::v73293 (
Boolean $enforced = false,
) {
if $enforced {
windowsfeature { 'simple-tcpip':
ensure => absent,
}
}
}
|