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