this should return 0 to indicate a non-failure when check_mode is True

This commit is contained in:
Jean-Francois Chevrette 2014-05-01 16:54:31 -04:00
parent bbcfda8c18
commit 8756612599

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)