Renaming fireball2 as 'accelerate' and removing old references

This commit is contained in:
James Cammarata
2013-08-30 13:24:24 -05:00
parent 7d3ae9fc75
commit d69d5c294f
3 changed files with 20 additions and 21 deletions

View File

@@ -66,7 +66,7 @@ class Connection(object):
args = "password=%s port=%s" % (base64.b64encode(self.key.__str__()), str(self.fbport))
self.ssh.connect()
tmp_path = self.runner._make_tmp_path(self.ssh)
return self.runner._execute_module(self.ssh, tmp_path, 'fireball2', args, inject={"password":self.key})
return self.runner._execute_module(self.ssh, tmp_path, 'accelerate', args, inject={"password":self.key})
def connect(self, allow_ssh=True):
''' activates the connection object '''
@@ -85,7 +85,7 @@ class Connection(object):
time.sleep(0.1)
tries -= 1
if tries == 0:
vvv("Could not connect via the fireball2 connection, exceeded # of tries")
vvv("Could not connect via the accelerated connection, exceeded # of tries")
raise errors.AnsibleError("Failed to connect")
except:
if allow_ssh: