f9a4feb746
Signed-off-by: Nick Chappell <nick@intronic.org> Merged in from: https://github.com/Icinga/puppet-icinga2/pull/33 refs#7215: https://dev.icinga.org/issues/7215
62 lines
1.6 KiB
Text
62 lines
1.6 KiB
Text
/**
|
|
* WARNING: This EventCommand definition is automatically generated by Puppet.
|
|
* ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
|
|
*/
|
|
|
|
/**
|
|
* A EventCommand 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 EventCommand "<%= @object_eventcommandname %>" {
|
|
<%#- If any of the @ parameters are undefined, don't print anything for them: -%>
|
|
|
|
<%- if @template_to_import -%>
|
|
import "<%= @template_to_import -%>"
|
|
|
|
<%- end -%>
|
|
<%- if @command -%>
|
|
command = [ <% if @cmd_path -%><%= @cmd_path -%> + <% end -%><% @command.each_with_index do |cmd, i| %><%= cmd -%><%= ', ' if i < (@command.size - 1) %><% end %> ]
|
|
<%- end -%>
|
|
<%#- Need to add support to argument value as hash (recursivity) -%>
|
|
|
|
<%- if @arguments -%>
|
|
arguments = {
|
|
<%- @arguments.each_with_index do |(key,value), i| -%>
|
|
<%= key %> = <% if value.class == String %><%= value %>
|
|
<%- else -%>{
|
|
<%- value.each_pair do |k,v| -%>
|
|
<%= k %> = <%= v %>
|
|
<%- end -%>
|
|
}
|
|
<%- end -%>
|
|
<%- end -%>
|
|
}
|
|
<%- end -%>
|
|
|
|
<%- if @vars -%>
|
|
<%- @vars.each_pair do |key,value| -%>
|
|
<%= key %> = <% if value.class == String %><%= value %>
|
|
<%- else -%>{
|
|
<%- value.each_pair do |k,v| -%>
|
|
<%= k %> = <%= v %>
|
|
<%- end -%>
|
|
}
|
|
<%- end -%>
|
|
<%- end -%>
|
|
<%- end -%>
|
|
|
|
<%- if @timeout -%>
|
|
timeout = <%= @timeout %>
|
|
<%- end -%>
|
|
|
|
<%- if @env -%>
|
|
env = {
|
|
<%- @vars.each_pair do |key,value| -%>
|
|
<%= key %> = <%= value %>
|
|
<%- end -%>
|
|
}
|
|
<%- end -%>
|
|
}
|