X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/7b0027c3421e0bcd10ccf3c03f70785ae5f7cab5..cd67ea35139fb5d661639160ae3cdd8b9a1bbb02:/cookbooks/gps-tile/recipes/default.rb diff --git a/cookbooks/gps-tile/recipes/default.rb b/cookbooks/gps-tile/recipes/default.rb index c0779f076..d92bff63a 100644 --- a/cookbooks/gps-tile/recipes/default.rb +++ b/cookbooks/gps-tile/recipes/default.rb @@ -44,7 +44,7 @@ git "/srv/gps-tile.openstreetmap.org/import" do group "gpstile" end -execute "import-make" do +execute "/srv/gps-tile.openstreetmap.org/import/src/Makefile" do action :nothing command "make" cwd "/srv/gps-tile.openstreetmap.org/import/src" @@ -61,7 +61,7 @@ git "/srv/gps-tile.openstreetmap.org/datamaps" do group "gpstile" end -execute "datamaps-make" do +execute "/srv/gps-tile.openstreetmap.org/datamaps/Makefile" do action :nothing command "make" cwd "/srv/gps-tile.openstreetmap.org/datamaps" @@ -78,8 +78,31 @@ git "/srv/gps-tile.openstreetmap.org/updater" do group "gpstile" end -directory "/srv/gps-tile.openstreetmap.org/html" do +template "/etc/init.d/gps-update" do + source "update.init.erb" + owner "root" + group "root" + mode 0755 +end + +service "gps-update" do + action [ :enable, :start ] + supports :restart => true + subscribes :restart, "git[/srv/gps-tile.openstreetmap.org/updater]" +end + +remote_directory "/srv/gps-tile.openstreetmap.org/html" do + source "html" owner "gpstile" group "gpstile" mode 0755 + files_owner "gpstile" + files_group "gpstile" + files_mode 0644 +end + +apache_module "headers" + +apache_site "gps-tile.openstreetmap.org" do + template "apache.erb" end