Puppet Class: secure_windows::stig::v73473
- Defined in:
- manifests/stig/v73473.pp
Overview
This class manages: V-73473 Windows Server 2016 must be configured to audit System - IPsec Driver successes. V-73475 Windows Server 2016 must be configured to audit System - IPsec Driver failures.
6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/stig/v73473.pp', line 6
class secure_windows::stig::v73473 (
Boolean $enforced = false,
) {
if $enforced {
auditpol { 'IPsec Driver':
success => 'enable',
failure => 'enable',
}
}
}
|