X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/ba874accf389eb9ea33db83df767af84b2f251d1..4ae212e4720e6947570b24131fcc9dce825182db:/cookbooks/tile/recipes/default.rb diff --git a/cookbooks/tile/recipes/default.rb b/cookbooks/tile/recipes/default.rb index e494d630d..6b3e7b9c9 100644 --- a/cookbooks/tile/recipes/default.rb +++ b/cookbooks/tile/recipes/default.rb @@ -376,18 +376,10 @@ postgresql_munin "gis" do database "gis" end -tile_uid = node[:etc][:passwd][:"tile"][:uid] -www_data_gid = node[:etc][:group][:"www-data"][:gid] - -ruby_block node[:tile][:node_file] do - block do - File.chown(tile_uid, www_data_gid, node[:tile][:node_file]) - File.chmod(0640, node[:tile][:node_file]) - end - not_if do - stat = File.stat(node[:tile][:node_file]) - stat.uid == tile_uid && stat.gid == www_data_gid && stat.mode == 0640 - end +file node[:tile][:node_file] do + owner "tile" + group "www-data" + mode 0640 end directory "/var/log/tile" do