X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/741593ee2bf203c9261f604d094e3d8e621698a8..16b15f75a3eeeb17abce1510dd2a286151ea86cc:/cookbooks/trac/recipes/default.rb diff --git a/cookbooks/trac/recipes/default.rb b/cookbooks/trac/recipes/default.rb index 8c397db8a..347b41b9b 100644 --- a/cookbooks/trac/recipes/default.rb +++ b/cookbooks/trac/recipes/default.rb @@ -17,17 +17,30 @@ # limitations under the License. # +include_recipe "accounts" include_recipe "apache" package %w[ trac - trac-git ruby ] site_name = "trac.openstreetmap.org" site_directory = "/srv/#{site_name}" +directory "/var/lib/trac" do + owner "trac" + group "trac" + mode 0o755 +end + +execute "trac-initenv-#{site_name}" do + command "trac-admin /var/lib/trac initenv #{site_name} sqlite:db/trac.db" + user "trac" + group "trac" + not_if { ::File.exist?("/var/lib/trac/VERSION") } +end + template "/var/lib/trac/conf/trac.ini" do source "trac.ini.erb" owner "trac" @@ -73,6 +86,10 @@ end apache_module "wsgi" +apache_module "authnz_external" do + package "libapache2-mod-authnz-external" +end + ssl_certificate "trac.openstreetmap.org" do domains ["trac.openstreetmap.org", "trac.osm.org"] notifies :reload, "service[apache2]"