]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/gps-tile/recipes/default.rb
Allow % in local parts for locally submitted mail
[chef.git] / cookbooks / gps-tile / recipes / default.rb
index 7c0068ee00b2184a4fa0791815627fcef1ac6f71..a243250d7731b1f8f55fc01f0584da8b5413de28 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "make"
 package "build-essential"
@@ -39,7 +39,7 @@ end
 git "/srv/gps-tile.openstreetmap.org/import" do
   action :sync
   repository "git://github.com/ericfischer/gpx-import.git"
-  revision "master"
+  revision "live"
   user "gpstile"
   group "gpstile"
 end
@@ -56,7 +56,7 @@ end
 git "/srv/gps-tile.openstreetmap.org/datamaps" do
   action :sync
   repository "git://github.com/ericfischer/datamaps.git"
-  revision "master"
+  revision "live"
   user "gpstile"
   group "gpstile"
 end
@@ -73,7 +73,7 @@ end
 git "/srv/gps-tile.openstreetmap.org/updater" do
   action :sync
   repository "git://github.com/ericfischer/gpx-updater.git"
-  revision "master"
+  revision "live"
   user "gpstile"
   group "gpstile"
 end
@@ -85,11 +85,11 @@ template "/etc/init.d/gps-update" do
   mode 0755
 end
 
-#service "gps-update" do
-#  action [ :enable, :start ]
-#  supports :restart => true
-#  subscribes :restart, "git[/srv/gps-tile.openstreetmap.org/updater]"
-#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"
@@ -98,7 +98,7 @@ remote_directory "/srv/gps-tile.openstreetmap.org/html" do
   mode 0755
   files_owner "gpstile"
   files_group "gpstile"
-  mode 0644
+  files_mode 0644
 end
 
 apache_module "headers"