X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/2cc0f2ba3c1fda40b800e6299ba5f35731d21bda..19f60d1fb981a1eedacab6c87fcbc11e90695f78:/cookbooks/git/recipes/server.rb diff --git a/cookbooks/git/recipes/server.rb b/cookbooks/git/recipes/server.rb index f679ce82b..12b576aa1 100644 --- a/cookbooks/git/recipes/server.rb +++ b/cookbooks/git/recipes/server.rb @@ -17,13 +17,8 @@ # limitations under the License. # -include_recipe "apache" include_recipe "networking" -package "gitweb" - -apache_module "rewrite" - git_directory = node[:git][:directory] directory git_directory do @@ -32,25 +27,6 @@ directory git_directory do mode 02775 end -template "/etc/gitweb.conf" do - source "gitweb.conf.erb" - owner "root" - group "root" - mode 0644 -end - -apache_site node[:git][:host] do - template "apache.erb" - directory git_directory -end - -template "#{git_directory}/robots.txt" do - source "robots.txt.erb" - owner "root" - group "root" - mode 0644 -end - firewall_rule "accept-git" do action :accept source "net" @@ -78,3 +54,10 @@ Dir.new(git_directory).select { |name| name =~ /\.git$/ }.each do |repository| end end end + +template "/etc/cron.daily/git-backup" do + source "backup.cron.erb" + owner "root" + group "root" + mode 0755 +end