chef/cookbooks/git/templates/git-xinetd.d.erb
Sebastian Kippe 0005f9ab7d
Add golang cookbook
Needs updating of ark and git cookbooks
2020-08-23 11:01:05 +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
}