mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
this should return 0 to indicate a non-failure when check_mode is True
This commit is contained in:
parent
51dfd18e1f
commit
83d79f6257
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue