]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/accounts/recipes/default.rb
Fix foodcritic warnings
[chef.git] / cookbooks / accounts / recipes / default.rb
index 76c3a84609b1cfce337f0d900a972f85f152a1cb..feb57a5e99fc845f9feb065b64c8c6ed8e234b4f 100644 (file)
@@ -42,13 +42,11 @@ search(:accounts, "*:*").each do |account|
     end
 
     group name.to_s do
-      action :create
       gid account["uid"].to_i
       members group_members & node[:etc][:passwd].keys
     end
 
     user name.to_s do
-      action :create
       uid account["uid"].to_i
       gid account["uid"].to_i
       comment account["comment"] if account["comment"]