module-icinga2/templates/object_livestatuslistener.conf.erb
Ricardo Cropalato de Melo d34c8a6274 fixed typo
2014-11-13 14:56:59 -05:00

33 lines
920 B
Text

/**
* WARNING: This LivestatusListener definition is automatically generated by Puppet.
* ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
*/
/**
* A LivestatusListener 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.
*
*/
library "livestatus"
object LivestatusListener "<%= @object_livestatuslistenername %>" {
<%#- If any of the @ parameters are undefined, don't print anything for them: -%>
<%- if @socket_type -%>
socket_type = "<%= @socket_type -%>"
<%- end -%>
<%- if @bind_host -%>
bind_host = "<%= @bind_host -%>"
<%- end -%>
<%- if @bind_port -%>
bind_port = "<%= @bind_port -%>"
<%- end -%>
<%- if @socket_path -%>
socket_path = "<%= @socket_path -%>"
<%- end -%>
<%- if @compat_log_path -%>
compat_log_path = "<%= @compat_log_path -%>"
<%- end -%>
}