1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #7249 from jfchevrette/implement-group-checking-if-state-present

Allow group module to handle check_mode properly when group.state=present and group already exists
This commit is contained in:
James Cammarata 2014-06-24 12:27:31 -05:00
commit bdd9b4cac4

View file

@ -121,7 +121,7 @@ class Group(object):
if len(cmd) == 1:
return (None, '', '')
if self.module.check_mode:
return (True, '', '')
return (0, '', '')
cmd.append(self.name)
return self.execute_command(cmd)