Puppet Class: secure_windows::stig::v73319
- Defined in:
- manifests/stig/v73319.pp
Overview
This class manages: V-73319 The minimum password age must be configured to at least one day.
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/stig/v73319.pp', line 4
class secure_windows::stig::v73319 (
Boolean $enforced = false,
) {
if $enforced {
local_security_policy { 'Minimum password age':
ensure => 'present',
policy_setting => 'MinimumPasswordAge',
policy_type => 'System Access',
policy_value => '1',
}
}
}
|