object_livestatuslistener.conf.erb 920 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * WARNING: This LivestatusListener definition is automatically generated by Puppet.
  3. * ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
  4. */
  5. /**
  6. * A LivestatusListener definition. You can create your own configuration files
  7. * in the conf.d directory (e.g. one per commnand). By default all *.conf
  8. * files in this directory are included.
  9. *
  10. */
  11. library "livestatus"
  12. object LivestatusListener "<%= @object_livestatuslistenername %>" {
  13. <%#- If any of the @ parameters are undefined, don't print anything for them: -%>
  14. <%- if @socket_type -%>
  15. socket_type = "<%= @socket_type -%>"
  16. <%- end -%>
  17. <%- if @bind_host -%>
  18. bind_host = "<%= @bind_host -%>"
  19. <%- end -%>
  20. <%- if @bind_port -%>
  21. bind_port = "<%= @bind_port -%>"
  22. <%- end -%>
  23. <%- if @socket_path -%>
  24. socket_path = "<%= @socket_path -%>"
  25. <%- end -%>
  26. <%- if @compat_log_path -%>
  27. compat_log_path = "<%= @compat_log_path -%>"
  28. <%- end -%>
  29. }