X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/5778549669fd0cfa7ebc63c44c84afedb5ce6e17..7e52994e42d49a148ab9b1931d79e59f837af8a7:/cookbooks/tilelog/recipes/default.rb?ds=sidebyside diff --git a/cookbooks/tilelog/recipes/default.rb b/cookbooks/tilelog/recipes/default.rb index 56d7870f3..8b4f91690 100644 --- a/cookbooks/tilelog/recipes/default.rb +++ b/cookbooks/tilelog/recipes/default.rb @@ -76,17 +76,18 @@ template "/usr/local/bin/tilelog" do source "tilelog.erb" owner "root" group "root" - mode 0o755 + mode "755" 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 "tilelog.cron.erb" - owner "root" - group "root" - mode 0o644 +cron_d "tilelog" do + minute "17" + hour "22" + user "www-data" + command "/usr/local/bin/tilelog" + mailto "zerebubuth@gmail.com" end # resources related to the output of the analysis and where it @@ -94,6 +95,6 @@ end directory tilelog_output_directory do user "www-data" group "www-data" - mode 0o755 + mode "755" recursive true end