Puppet Class: secure_linux_cis::reboot
- Defined in:
- manifests/reboot.pp
Summary
A short summary of the purpose of this classOverview
A description of what this class does
8 9 10 11 12 13 14 15 |
# File 'manifests/reboot.pp', line 8
class secure_linux_cis::reboot {
if $secure_linux_cis::auto_restart {
reboot { 'after_run':
apply => 'finished',
timeout => 60,
}
}
}
|