42e2ee7ba9
Commit: 0740f5343b54523d9ed27f65c05f6c9f045f022b Source: https://github.com/puppetlabs/puppetlabs-xinetd.git Change-Id: I05944255240752c07efae6fe18cf4668bfe37ff6 Related: blueprint merge-openstack-puppet-modules
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
# This file is being maintained by Puppet.
|
|
# DO NOT EDIT
|
|
|
|
service <%= @service_name %>
|
|
{
|
|
port = <%= @port %>
|
|
disable = <%= @disable %>
|
|
socket_type = <%= @socket_type %>
|
|
protocol = <%= @protocol %>
|
|
wait = <%= @_wait %>
|
|
user = <%= @user %>
|
|
group = <%= @group %>
|
|
groups = <%= @groups %>
|
|
server = <%= @server %>
|
|
<% if @bind -%>
|
|
bind = <%= @bind %>
|
|
<% end -%>
|
|
<% if @service_type -%>
|
|
type = <%= @service_type %>
|
|
<% end -%>
|
|
<% if @server_args -%>
|
|
server_args = <%= @server_args %>
|
|
<% end -%>
|
|
<% if @only_from -%>
|
|
only_from = <%= @only_from %>
|
|
<% end -%>
|
|
<% if @per_source -%>
|
|
per_source = <%= @per_source %>
|
|
<% end -%>
|
|
<% if @log_on_success -%>
|
|
log_on_success <%= @log_on_success_operator %> <%= @log_on_success %>
|
|
<% end -%>
|
|
<% if @log_on_failure -%>
|
|
log_on_failure <%= @log_on_failure_operator %> <%= @log_on_failure %>
|
|
<% end -%>
|
|
<% if @cps -%>
|
|
cps = <%= @cps %>
|
|
<% end -%>
|
|
<% if @flags -%>
|
|
flags = <%= @flags %>
|
|
<% end -%>
|
|
<% if @xtype -%>
|
|
type = <%= @xtype %>
|
|
<% end -%>
|
|
<% if @no_access -%>
|
|
no_access = <%= @no_access %>
|
|
<% end -%>
|
|
<% if @access_times -%>
|
|
access_times = <%= @access_times %>
|
|
<% end -%>
|
|
<% if @log_type -%>
|
|
log_type = <%= @log_type %>
|
|
<% end -%>
|
|
}
|