Manage groups on Mac OS 10.7+
salt.modules.mac_group.
add
(name, gid=None, **kwargs)¶Add the specified group
CLI 范例:
salt '*' group.add foo 3456
salt.modules.mac_group.
adduser
(group, name)¶Add a user in the group.
CLI 范例:
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.
chgid
(name, gid)¶Change the gid for a named group
CLI 范例:
salt '*' group.chgid foo 4376
salt.modules.mac_group.
delete
(name)¶Remove the named group
CLI 范例:
salt '*' group.delete foo
salt.modules.mac_group.
deluser
(group, name)¶Remove a user from the group
2016.3.0 新版功能.
CLI 范例:
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.
getent
(refresh=False)¶Return info on all groups
CLI 范例:
salt '*' group.getent
salt.modules.mac_group.
info
(name)¶Return information about a group
CLI 范例:
salt '*' group.info foo
salt.modules.mac_group.
members
(name, members_list)¶Replaces members of the group with a provided list.
2016.3.0 新版功能.
CLI 范例:
salt '*' group.members foo 'user1,user2,user3,...'
Replaces a membership list for a local group 'foo'.