]> git.openstreetmap.org Git - chef.git/commitdiff
Simplify management of nodes file permission now CHEF#1260 is fixed
authorTom Hughes <tom@compton.nu>
Sun, 9 Feb 2014 10:23:32 +0000 (10:23 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 9 Feb 2014 10:23:32 +0000 (10:23 +0000)
cookbooks/tile/recipes/default.rb

index e494d630d20d2dec554b06c57ab923e5e03bae9a..6b3e7b9c98f57b9955da8c5c8d59c712976ec15e 100644 (file)
@@ -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