Puppet Class: simplib::reboot_notify
- Defined in:
- manifests/reboot_notify.pp
Summary
This is a simple controller class for global settings related to theOverview
‘reboot_notify` custom type
14 15 16 17 18 19 20 21 |
# File 'manifests/reboot_notify.pp', line 14
class simplib::reboot_notify (
Simplib::PuppetLogLevel $log_level = 'notice'
){
reboot_notify { '__simplib_control__':
log_level => $log_level,
control_only => true
}
}
|