]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilelog/recipes/default.rb
Use autoreconf to build configure as there is no autogen.sh
[chef.git] / cookbooks / tilelog / recipes / default.rb
index 9deb70d0b05b73252560fd05bfb1e2bea7814b1e..78471e0d73bacfd6acf160986248e926eb02c775 100644 (file)
@@ -36,17 +36,17 @@ git tilelog_source_directory do
   action :sync
   repository "https://github.com/zerebubuth/openstreetmap-tile-analyze.git"
   revision "live"
-  user "www-data"
-  group "www-data"
+  user "root"
+  group "root"
   notifies :run, "execute[tilelog-autogen]", :immediate
 end
 
 execute "tilelog-autogen" do
   action :nothing
-  command "./autogen.sh"
+  command "autoreconf -i"
   cwd tilelog_source_directory
-  user "www-data"
-  group "www-data"
+  user "root"
+  group "root"
   notifies :run, "execute[tilelog-configure]", :immediate
 end
 
@@ -54,8 +54,8 @@ execute "tilelog-configure" do
   action :nothing
   command "./configure --with-boost-libdir=/usr/lib"
   cwd tilelog_source_directory
-  user "www-data"
-  group "www-data"
+  user "root"
+  group "root"
   notifies :run, "execute[tilelog-build]", :immediate
 end
 
@@ -63,8 +63,8 @@ execute "tilelog-build" do
   action :nothing
   command "make"
   cwd tilelog_source_directory
-  user "www-data"
-  group "www-data"
+  user "root"
+  group "root"
 end
 
 # resources for running the tile analysis
@@ -73,11 +73,9 @@ template "/usr/local/bin/tilelog" do
   owner "root"
   group "root"
   mode 0755
-  variables {
-    :analyze_bin => "#{tilelog_source_directory}/openstreetmap-tile-analyze",
-    :input_dir => tilelog_input_directory,
-    :output_dir => tilelog_output_directory
-  }
+  variables :analyze_bin => "#{tilelog_source_directory}/openstreetmap-tile-analyze",
+            :input_dir => tilelog_input_directory,
+            :output_dir => tilelog_output_directory
 end
 
 template "/etc/cron.d/tilelog" do