X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/19f60d1fb981a1eedacab6c87fcbc11e90695f78..e2e7455fbda41bef4885a81d67f9cf45f127638c:/cookbooks/git/recipes/web.rb?ds=sidebyside 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