Puppet Class: secure_windows::stig::v73259
- Defined in:
- manifests/stig/v73259.pp
Overview
This class manages V-73259 Outdated or unused accounts must be removed from the system or disabled.
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/stig/v73259.pp', line 3
class secure_windows::stig::v73259 (
Boolean $enforced = false,
) {
if $enforced {
if $facts['unused_accounts'] != '' {
notify { 'V-73259':
message => 'Not in compliance with DoD STIG V-73259. There are unused accounts that must be removed from the system',
loglevel => warning,
}
}
}
}
|