Make sure we don't catch rc=0 as a timeout (#2823)

This commit is contained in:
Matt Martz 2016-08-31 10:29:41 -05:00 committed by GitHub
parent b576e116f0
commit 3867cc71a6

View file

@ -224,7 +224,7 @@ def main():
changed=True,
)
if rc:
if rc is not None:
module.exit_json(**ret)
else:
ret['msg'] = 'command exceeded timeout'