No longer hard-code OpenStack username per env 59/23059/1
authorGary Wu <gary.i.wu@huawei.com>
Fri, 10 Nov 2017 00:54:34 +0000 (16:54 -0800)
committerGary Wu <gary.i.wu@huawei.com>
Fri, 10 Nov 2017 00:54:52 +0000 (16:54 -0800)
Issue-ID: INT-278
Change-Id: Id715784a772048c8dfa60762069ccfd67f72984b
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
test/ete/labs/windriver/Integration-Jenkins-openrc.sh
test/ete/labs/windriver/Integration-SB-04-openrc.sh

index feec97d..ca2e2c2 100644 (file)
@@ -29,7 +29,7 @@ unset OS_TENANT_NAME
 if [ -z ${OS_USERNAME_INPUT+x} ]; then
     read -sp "Please enter your OpenStack Username for project $OS_PROJECT_NAME: " OS_USERNAME_INPUT
 fi
-export OS_USERNAME=OS_USERNAME_INPUT
+export OS_USERNAME=$OS_USERNAME_INPUT
 
 # With Keystone you pass the keystone password.
 if [ -z ${OS_PASSWORD_INPUT+x} ]; then
index 52eb4df..e7cee93 100644 (file)
@@ -31,7 +31,7 @@ unset OS_TENANT_NAME
 if [ -z ${OS_USERNAME_INPUT+x} ]; then
     read -sp "Please enter your OpenStack Username for project $OS_PROJECT_NAME: " OS_USERNAME_INPUT
 fi
-export OS_USERNAME=OS_USERNAME_INPUT
+export OS_USERNAME=$OS_USERNAME_INPUT
 
 # With Keystone you pass the keystone password.
 if [ -z ${OS_PASSWORD_INPUT+x} ]; then