summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doctor_tests/installer/apex.py10
-rw-r--r--doctor_tests/installer/daisy.py13
2 files changed, 14 insertions, 9 deletions
diff --git a/doctor_tests/installer/apex.py b/doctor_tests/installer/apex.py
index aaacb385..90304a27 100644
--- a/doctor_tests/installer/apex.py
+++ b/doctor_tests/installer/apex.py
@@ -96,13 +96,13 @@ class ApexInstaller(BaseInstaller):
def setup_stunnel(self):
self.log.info('Setup ssh stunnel in controller nodes'
- ' in Apex installer......')
+ 'in Apex installer......')
for node_ip in self.controllers:
cmd = ("ssh -o UserKnownHostsFile=/dev/null"
- "-o StrictHostKeyChecking=no"
- "-i %s %s@%s -R %s:localhost:%s"
- "sleep 600 > ssh_tunnel.%s.log"
- "2>&1 < /dev/null &"
+ " -o StrictHostKeyChecking=no"
+ " -i %s %s@%s -R %s:localhost:%s"
+ " sleep 600 > ssh_tunnel.%s.log"
+ " 2>&1 < /dev/null &"
% (self.key_file,
self.node_user_name,
node_ip,
diff --git a/doctor_tests/installer/daisy.py b/doctor_tests/installer/daisy.py
index 65d7a7ea..3b1fbb24 100644
--- a/doctor_tests/installer/daisy.py
+++ b/doctor_tests/installer/daisy.py
@@ -97,11 +97,16 @@ class DaisyInstaller(BaseInstaller):
self.nova.flavors.create(self.conf.flavor, 512, 1, 1)
def setup_stunnel(self):
- self.log.info('Setup ssh stunnel in controller nodes in Daisy installer......')
+ self.log.info('Setup ssh stunnel in controller nodes'
+ 'in Daisy installer......')
for node_ip in self.controllers:
- cmd = "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i %s %s@%s -R %s:localhost:%s sleep 600 > ssh_tunnel.%s 2>&1 < /dev/null &" \
- % (self.key_file, self.node_user_name, node_ip,
- self.conf.consumer.port, self.conf.consumer.port, node_ip)
+ cmd = ("ssh -o UserKnownHostsFile=/dev/null"
+ " -o StrictHostKeyChecking=no"
+ " -i %s %s@%s -R %s:localhost:%s"
+ " sleep 600 > ssh_tunnel.%s 2>&1 < /dev/null &"
+ % (self.key_file, self.node_user_name,
+ node_ip, self.conf.consumer.port,
+ self.conf.consumer.port, node_ip))
server = subprocess.Popen(cmd, shell=True)
self.servers.append(server)
server.communicate()