Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macos_user should allow adding to group(s) #40

Closed
mjmerin opened this issue Feb 7, 2018 · 1 comment
Closed

macos_user should allow adding to group(s) #40

mjmerin opened this issue Feb 7, 2018 · 1 comment
Assignees
Labels

Comments

@mjmerin
Copy link
Contributor

mjmerin commented Feb 7, 2018

The macos_user resource should have a property that specifies what group(s) the macos_user belongs to.

Currently adding a user to a group requires the usage of the macos_user resource, followed by the Chef core group resource.

macos_user 'create admin user ' do
  username 'johnd'
  fullname 'John Doe'
  password 'password'
  admin true
  action :create
end

group 'groups for some action ' do
  group_name 'csi'
  members 'johnd'
  action :create
end
@mjmerin mjmerin added the feature label Feb 7, 2018
@mjmerin mjmerin self-assigned this Feb 9, 2018
@americanhanko
Copy link
Collaborator

Addressed with changes introduced in #43

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants