salt.modules.mac_group
Manage groups on Mac OS 10.7+
-
Add the specified group
CLI Example:
salt '*' group.add foo 3456
salt.modules.mac_group.add(name, gid=None, **kwargs)
-
Add a user in the group.
CLI Example:
salt '*' group.adduser foo bar
Verifies if a valid username 'bar' as a member of an existing group 'foo', if not then adds it.
salt.modules.mac_group.adduser(group, name)
-
Change the gid for a named group
CLI Example:
salt '*' group.chgid foo 4376
salt.modules.mac_group.chgid(name, gid)
-
Remove the named group
CLI Example:
salt '*' group.delete foo
salt.modules.mac_group.delete(name)
-
Remove a user from the group
New in version 2016.3.0.
CLI Example:
salt '*' group.deluser foo bar
Removes a member user 'bar' from a group 'foo'. If group is not present then returns True.
salt.modules.mac_group.deluser(group, name)
-
Return info on all groups
CLI Example:
salt '*' group.getent
salt.modules.mac_group.getent(refresh=False)
-
Return information about a group
CLI Example:
salt '*' group.info foo
salt.modules.mac_group.info(name)
-
Replaces members of the group with a provided list.
New in version 2016.3.0.
CLI Example:
salt '*' group.members foo 'user1,user2,user3,...'
Replaces a membership list for a local group 'foo'.
salt.modules.mac_group.members(name, members_list)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.mac_group.html