Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Unknown
-
Resolution: Fixed
-
Affects Version/s: 0.10.4
-
Fix Version/s: 10.14.0
-
Component/s: None
-
Labels:None
Description
When creating a new user, the gid is properly set:
user 'newuser1' do
gid 80 # admin
action 'create'
end
However, if you were to later change the gid in the chef recipe:
user 'newuser1' do
gid 20 # staff
action 'manage'
end
The user's gid will not be updated.
Looks like a simple typo-- submitted pull request: https://github.com/opscode/chef/pull/202