X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/19f60d1fb981a1eedacab6c87fcbc11e90695f78..acaab38e3fa5cbd001e77fcf3ad30642d1bc63ef:/cookbooks/git/recipes/web.rb diff --git a/cookbooks/git/recipes/web.rb b/cookbooks/git/recipes/web.rb index 74e722a0c..5a59e1c4b 100644 --- a/cookbooks/git/recipes/web.rb +++ b/cookbooks/git/recipes/web.rb @@ -17,7 +17,7 @@ # limitations under the License. # -include_recipe "apache" +include_recipe "apache::ssl" package "gitweb" @@ -29,7 +29,7 @@ template "/etc/gitweb.conf" do source "gitweb.conf.erb" owner "root" group "root" - mode 0644 + mode 0o644 end apache_site node[:git][:host] do @@ -41,5 +41,5 @@ template "#{git_directory}/robots.txt" do source "robots.txt.erb" owner "root" group "root" - mode 0644 + mode 0o644 end