object_apilistener.conf.erb 961 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * WARNING: This ApiListener object definition is automatically generated by Puppet.
  3. * ANY MANUAL CHANGES TO IT WILL GET OVERWRITTEN!
  4. */
  5. /**
  6. * An ApiListener 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. object ApiListener "<%= @object_name %>" {
  12. <%- if @cert_path -%>
  13. cert_path = <%= @cert_path %>
  14. <%- end -%>
  15. <%- if @key_path -%>
  16. key_path = <%= @key_path %>
  17. <%- end -%>
  18. <%- if @ca_path -%>
  19. ca_path = <%= @ca_path %>
  20. <%- end -%>
  21. <%- if @crl_path -%>
  22. crl_path = <%= @crl_path %>
  23. <%- end -%>
  24. <%- if @bind_host -%>
  25. bind_host = "<%= @bind_host %>"
  26. <%- end -%>
  27. <%- if @bind_port -%>
  28. bind_port = <%= @bind_port %>
  29. <%- end -%>
  30. <%- if @accept_config -%>
  31. accept_config = <%= @accept_config %>
  32. <%- end -%>
  33. <%- if @accept_commands -%>
  34. accept_commands = <%= @accept_commands %>
  35. <%- end -%>
  36. }