]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/gps-tile/recipes/default.rb
Enable SSL for the GPS tile server
[chef.git] / cookbooks / gps-tile / recipes / default.rb
index ab524abcc5ce1c9de098cb289cd43c79c248e815..eb019f8f078c5fb26479d6d068eb6d51fca6f2fe 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "make"
 package "build-essential"
@@ -44,10 +44,10 @@ 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"
+  cwd "/srv/gps-tile.openstreetmap.org/import/src"
   user "gpstile"
   group "gpstile"
   subscribes :run, "git[/srv/gps-tile.openstreetmap.org/import]"
@@ -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, :status => 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