Puppet Class: secure_windows::stig::v73735
- Defined in:
- manifests/stig/v73735.pp
Overview
This class manages: V-73735 The Act as part of the operating system user right must not be assigned to any groups or accounts.
4 5 6 7 8 9 10 11 12 |
# File 'manifests/stig/v73735.pp', line 4
class secure_windows::stig::v73735 (
Boolean $enforced = false,
) {
if $enforced {
local_security_policy { 'Act as part of the operating system':
ensure => 'absent',
}
}
}
|