From: Carlos Goncalves Date: Fri, 22 Jul 2016 10:44:01 +0000 (+0200) Subject: Unset default COMPUTE_USER at the beginning of tests X-Git-Tag: colorado.1.0~45^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=doctor.git;a=commitdiff_plain;h=e7b8c3759dda11e630c28ab3b31bf4bbb129a7f8 Unset default COMPUTE_USER at the beginning of tests Each installer has different compute users and we set a default for each in get_compute_host_info. Having COMPUTE_USER set at the beginning as is and not passing in a value will default to 'none' and thus overriding the default user of the installer. For example, COMPUTE_USER would be set to 'none' instead of 'heat-admin' for Apex installer. Change-Id: Ia60a88f68c52604bac6b7eef18e97e11328f1a6e Signed-off-by: Carlos Goncalves --- diff --git a/tests/run.sh b/tests/run.sh index 4d9a5c73..f6461131 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -28,7 +28,6 @@ DOCTOR_ROLE=admin SUPPORTED_INSTALLER_TYPES="apex local" INSTALLER_TYPE=${INSTALLER_TYPE:-apex} INSTALLER_IP=${INSTALLER_IP:-none} -COMPUTE_USER=${COMPUTE_USER:-none} ssh_opts="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"