Puppet Class: secure_windows::stig::v73751
- Defined in:
- manifests/stig/v73751.pp
Overview
This class manages: V-73751 The Create permanent shared objects user right must not be assigned to any groups or accounts.
4 5 6 7 8 9 10 11 12 |
# File 'manifests/stig/v73751.pp', line 4
class secure_windows::stig::v73751 (
Boolean $enforced = false,
) {
if $enforced {
local_security_policy { 'Create permanent shared objects':
ensure => 'absent',
}
}
}
|