X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b75ef1393831f5a08944da6ecc1bb47232dce8fb..e923df607a12d4a184b252723df0473bb7d3f5f3:/cookbooks/tilelog/recipes/default.rb diff --git a/cookbooks/tilelog/recipes/default.rb b/cookbooks/tilelog/recipes/default.rb index 9ab433195..084da1da6 100644 --- a/cookbooks/tilelog/recipes/default.rb +++ b/cookbooks/tilelog/recipes/default.rb @@ -8,7 +8,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -19,13 +19,15 @@ include_recipe "tools" -package "gcc" -package "make" -package "autoconf" -package "automake" -package "libboost-filesystem-dev" -package "libboost-system-dev" -package "libboost-program-options-dev" +package %w[ + gcc + make + autoconf + automake + libboost-filesystem-dev + libboost-system-dev + libboost-program-options-dev +] tilelog_source_directory = node[:tilelog][:source_directory] tilelog_input_directory = node[:tilelog][:input_directory] @@ -72,7 +74,7 @@ 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 @@ -82,14 +84,13 @@ template "/etc/cron.d/tilelog" do 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