Manage groups on Linux and OpenBSD
salt.modules.groupadd.add(name, gid=None, system=False)¶Add the specified group
CLI Example:
salt '*' group.add foo 3456
salt.modules.groupadd.chgid(name, gid)¶Change the gid for a named group
CLI Example:
salt '*' group.chgid foo 4376
salt.modules.groupadd.delete(name)¶Remove the named group
CLI Example:
salt '*' group.delete foo
salt.modules.groupadd.getent(refresh=False)¶Return info on all groups
CLI Example:
salt '*' group.getent
salt.modules.groupadd.info(name)¶Return information about a group
CLI Example:
salt '*' group.info foo
Current Salt release: 2014.1.7
Docs for previous releases on salt.rtfd.org.