salt.modules.solaris_group
Manage groups on Solaris
Important
If you feel that Salt should be using this module to manage groups on a minion, and it is using a different module (or gives an error similar to 'group.info' is not available), see here.
-
Add the specified group
CLI Example:
salt '*' group.add foo 3456
salt.modules.solaris_group.add(name, gid=None, **kwargs)
-
Change the gid for a named group
CLI Example:
salt '*' group.chgid foo 4376
salt.modules.solaris_group.chgid(name, gid)
-
Remove the named group
CLI Example:
salt '*' group.delete foo
salt.modules.solaris_group.delete(name)
-
Return info on all groups
CLI Example:
salt '*' group.getent
salt.modules.solaris_group.getent(refresh=False)
-
Return information about a group
CLI Example:
salt '*' group.info foo
salt.modules.solaris_group.info(name)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.solaris_group.html