4e5c31b955
Signed-off-by: Nick Chappell <nick@intronic.org> Merged from: https://github.com/Icinga/puppet-icinga2/pull/37 refs#7217: https://dev.icinga.org/issues/7217
31 rader
916 B
Text
31 rader
916 B
Text
/**
|
|
* WARNING: This NotificationCommand definition is automatically generated by Puppet.
|
|
* ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
|
|
*/
|
|
|
|
/**
|
|
* A TimePeriod definition. You can create your own configuration files
|
|
* in the conf.d directory (e.g. one per commnand). By default all *.conf
|
|
* files in this directory are included.
|
|
*
|
|
*/
|
|
|
|
object TimePeriod "<%= @object_name %>" {
|
|
<%#- If any of the @ parameters are undefined, don't print anything for them: -%>
|
|
<%#- Otherwise, include the parameter: -%>
|
|
<%- if @timeperiod_template_to_import -%>
|
|
import "<%= @timeperiod_template_to_import -%>"
|
|
<%- end -%>
|
|
|
|
display_name = "<%= @timeperiod_display_name %>"
|
|
<%- if @methods_update -%>
|
|
methods.update = "<%= @methods_update -%>"
|
|
<%- end -%>
|
|
<%- if @ranges.empty? != true -%>
|
|
ranges = {
|
|
<%- @ranges.each_pair do |key,value| -%>
|
|
"<%= key %>" = "<%= value %>"
|
|
<%- end -%>
|
|
}
|
|
<%- end -%>
|
|
}
|