#
include_recipe "networking"
+include_recipe "xinetd"
git_directory = node[:git][:directory]
mode 0755
end
- if repository != "dns.git"
+ if node[:recipes].include?("trace") && repository != "dns.git"
template "#{git_directory}/#{repository}/hooks/post-receive" do
source "post-receive.erb"
owner "root"
group "root"
mode 0755
end
+
+template "/etc/xinetd.d/git" do
+ source "xinetd.erb"
+ owner "root"
+ group "root"
+ mode 0644
+ notifies :reload, "service[xinetd]"
+end