Puppet Class: simplib::reboot_notify

Defined in:
manifests/reboot_notify.pp

Summary

This is a simple controller class for global settings related to the

Overview

‘reboot_notify` custom type

Parameters:

  • log_level (Simplib::PuppetLogLevel) (defaults to: 'notice')

    The Puppet log_level to use when generating output

    To change the level of the reboot_notify messages add this class to the class list in hiera and set simplib::reboot_notify::log_level to the level you want.

    • Set to log_level to“debug“ if you wish to disable output unless you’re running in debug mode.



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
  }
}