]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nfs/recipes/default.rb
Yet more rubucop cleanups
[chef.git] / cookbooks / nfs / recipes / default.rb
index 0b4c9ffe4ca05530599d48379f779ad66990e646..8d44e2bd62673550c8e77f8042b6d4f6b8492644 100644 (file)
@@ -19,7 +19,7 @@
 
 package "nfs-common"
 
-node[:nfs].each do |mountpoint,details|
+node[:nfs].each do |mountpoint, details|
   if details[:readonly]
     mount_options = "ro,bg,soft,udp,rsize=8192,wsize=8192,nfsvers=3"
   else
@@ -31,11 +31,11 @@ node[:nfs].each do |mountpoint,details|
     group "root"
     mode 0755
     recursive true
-    not_if { File.exists?(mountpoint) }
+    not_if { File.exist?(mountpoint) }
   end
 
   mount mountpoint do
-    action [ :mount, :enable ]
+    action [:mount, :enable]
     device "#{details[:host]}:#{details[:path]}"
     fstype "nfs"
     options mount_options