summaryrefslogtreecommitdiffstats
path: root/doctor_tests/installer/daisy.py
diff options
context:
space:
mode:
authordongwenjuan <dong.wenjuan@zte.com.cn>2018-10-25 11:23:58 +0800
committerdongwenjuan <dong.wenjuan@zte.com.cn>2018-10-25 11:28:56 +0800
commit2a1d82ade82c3076a630af41da493da5a606993d (patch)
treed5bd9ff0fd30882a946fc0cc96dc47c3e6bd7f19 /doctor_tests/installer/daisy.py
parent0f1dd4314b9e0247d9af7af6df2410462423aeca (diff)
fix the username to login undercloud in Apex
Change-Id: I6d5325166db642b3481a0327f518ec821a8ab378 Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'doctor_tests/installer/daisy.py')
-rw-r--r--doctor_tests/installer/daisy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/doctor_tests/installer/daisy.py b/doctor_tests/installer/daisy.py
index 52ccb7c8..e4499d9c 100644
--- a/doctor_tests/installer/daisy.py
+++ b/doctor_tests/installer/daisy.py
@@ -12,11 +12,12 @@ from doctor_tests.installer.base import BaseInstaller
class DaisyInstaller(BaseInstaller):
node_user_name = 'root'
+ installer_username = 'root'
def __init__(self, conf, log):
super(DaisyInstaller, self).__init__(conf, log)
self.client = SSHClient(self.conf.installer.ip,
- self.conf.installer.username,
+ self.installer_username,
password='r00tme')
self.key_file = None
self.controllers = list()