chef/cookbooks/git/templates/default/git-xinetd.d.erb
Greg Karékinian a32f34b408 Vendor the external cookbooks
Knife-Zero doesn't include Berkshelf support, so vendoring everything in
the repo is convenient again
2019-10-13 19:17:42 +02:00

11 lines
399 B
Plaintext

service git
{
disable = no
socket_type = stream
wait = no
user = nobody
server = <%= @git_daemon_binary %>
server_args = --base-path=<%= node["git"]["server"]["base_path"] %> <%= node['git']['server']['export_all'] ? '--export-all' : nil %> --syslog --inetd --verbose
log_on_failure += USERID
}