Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 0.5.2
-
Fix Version/s: 0.5.4
-
Component/s: Chef Client, Chef Solo
-
Labels:None
Description
node[:groups].each do |g|
group g[:name] do
gid g[:gid]
end
end
node[:users].each do |u|
user u[:name] do
comment u[:comment]
uid u[:uid]
gid u[:gid]
shell "bin/bash"
password u[:password]
end
end
Fixed, pull req sent
http://github.com/fujin/chef/tree/chef-96
Forgot to check for an empty members array.