You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: