Initial support for running gather_facts through fireball2

This commit is contained in:
James Cammarata 2013-08-27 14:34:32 -05:00
commit 167f185092
2 changed files with 1 additions and 2 deletions

View file

@ -136,7 +136,6 @@ class Connection(object):
response = utils.decrypt(self.key, response)
response = utils.parse_json(response)
vvv("COMMAND DONE: rc=%s" % str(response.get('rc',"<unknown>")))
return (response.get('rc',None), '', response.get('stdout',''), response.get('stderr',''))
def put_file(self, in_path, out_path):