module-icinga2/templates/object_hostgroup.conf.erb

32 lines
954 B
Text
Raw Normal View History

2014-07-21 05:40:22 +02:00
/**
* WARNING: This hostgroup definition is automatically generated by Puppet.
* ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
*/
/**
* A hostgroup definition. You can create your own configuration files
* in the conf.d directory (e.g. one per host). By default all *.conf
* files in this directory are included.
*
*/
object HostGroup "<%= @object_hostgroup_name %>" {
<%#- If any of the @ parameters are undefined, don't print anything for them: -%>
<%- if @template_to_import -%>
2014-09-14 04:46:24 +02:00
<%#- Otherwise, include the parameter: -%>
2014-07-21 05:40:22 +02:00
import "<%= @template_to_import -%>"
<%- end -%>
<%- if @display_name -%>
display_name = "<%= @display_name -%>"
<%- end -%>
<%- if @groups.length != 0 -%>
groups = [ <%- @groups.each do |group| -%> "<%= group %>", <%- end -%>]
<%- end -%>
<%- if @assign_where -%>
assign where <%= @assign_where %>
2014-07-21 05:40:22 +02:00
<%- end -%>
<%- if @ignore_where -%>
ignore where <%= @ignore_where %>
<%- end -%>
2014-09-14 04:46:24 +02:00
}