X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e174d8071684cd493b9d3dead6e4595b090d7cb7..45479cd73476809c38704ab5f221c16c86504f2f:/cookbooks/tilelog/recipes/default.rb diff --git a/cookbooks/tilelog/recipes/default.rb b/cookbooks/tilelog/recipes/default.rb index 78471e0d7..6fef30343 100644 --- a/cookbooks/tilelog/recipes/default.rb +++ b/cookbooks/tilelog/recipes/default.rb @@ -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,17 +72,17 @@ template "/usr/local/bin/tilelog" do source "tilelog.erb" owner "root" group "root" - mode 0755 + 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 @@ -91,5 +91,5 @@ directory tilelog_output_directory do action :create user "www-data" group "www-data" - mode 0755 + mode 0o755 end