]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilelog/recipes/default.rb
Fix foodcritic warnings
[chef.git] / cookbooks / tilelog / recipes / default.rb
index f87a45af09df0a4fd03d071bd628159767d66521..675e3abc2ca6c26915c037e377b4bf9932a394b4 100644 (file)
@@ -43,7 +43,7 @@ end
 
 execute "tilelog-autogen" do
   action :nothing
-  command "./autogen.sh"
+  command "autoreconf -i"
   cwd tilelog_source_directory
   user "root"
   group "root"
@@ -52,7 +52,7 @@ end
 
 execute "tilelog-configure" do
   action :nothing
-  command "./configure --with-boost-libdir=/usr/lib"
+  command "./configure --with-boost-libdir=/usr/lib/x86_64-linux-gnu"
   cwd tilelog_source_directory
   user "root"
   group "root"
@@ -72,26 +72,23 @@ template "/usr/local/bin/tilelog" do
   source "tilelog.erb"
   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
-  }
+  mode 0o755
+  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
-  source "tileog.cron.erb"
+  source "tilelog.cron.erb"
   owner "root"
   group "root"
-  mode 0644
+  mode 0o644
 end
 
 # resources related to the output of the analysis and where it
 # can be publicly downloaded.
 directory tilelog_output_directory do
-  action :create
   user "www-data"
   group "www-data"
-  mode 0755
+  mode 0o755
 end