Puppet Class: secure_windows::stig::v73779
- Defined in:
- manifests/stig/v73779.pp
Overview
This class manages: V-73779 The Enable computer and user accounts to be trusted for delegation user right must not be assigned to any groups or accounts on member servers.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/stig/v73779.pp', line 5
class secure_windows::stig::v73779 (
Boolean $enforced = false,
) {
if $enforced {
if($facts['windows_server_type'] == 'MemberServer') {
local_security_policy { 'Enable computer and user accounts to be trusted for delegation':
ensure => 'absent',
}
}
}
}
|