Puppet Class: secure_windows::stig::v73235
- Defined in:
- manifests/stig/v73235.pp
Overview
V-73235 Windows Server 2016 must employ a deny-all, permit-by-exception policy to allow the execution of authorized software programs.
3 4 5 6 7 8 9 10 11 12 13 |
# File 'manifests/stig/v73235.pp', line 3
class secure_windows::stig::v73235 (
Boolean $enforced = false,
) {
if $enforced {
include ::secure_windows::applocker_startup
}
}
|