Merge pull request #4644 from dlam26/develop

salt.states.group.present system arg undocumented
This commit is contained in:
Thomas S Hatch 2013-04-29 15:15:49 -07:00
commit d789fbffea

View File

@ -24,6 +24,11 @@ def present(name, gid=None, system=False):
gid
The group id to assign to the named group; if left empty, then the next
available group id will be assigned
system
Whether or not the named group is a system group. This is essentially
the '-r' option of 'groupadd'.
'''
ret = {'name': name,
'changes': {},