diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-11-09 16:54:34 -0800 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-11-09 16:54:52 -0800 |
commit | 83353d2a690be671704d54ba70d3fde3cf8625d2 (patch) | |
tree | dcf5fcdc20c9d96b69d70ee608d4b2eb76b8cee9 /test/ete | |
parent | acf1cb3c8ad58edfa4f53ca18b8cff0668b858dc (diff) |
No longer hard-code OpenStack username per env
Issue-ID: INT-278
Change-Id: Id715784a772048c8dfa60762069ccfd67f72984b
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/ete')
-rw-r--r-- | test/ete/labs/windriver/Integration-Jenkins-openrc.sh | 2 | ||||
-rw-r--r-- | test/ete/labs/windriver/Integration-SB-04-openrc.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ete/labs/windriver/Integration-Jenkins-openrc.sh b/test/ete/labs/windriver/Integration-Jenkins-openrc.sh index feec97d33..ca2e2c2cf 100644 --- a/test/ete/labs/windriver/Integration-Jenkins-openrc.sh +++ b/test/ete/labs/windriver/Integration-Jenkins-openrc.sh @@ -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 diff --git a/test/ete/labs/windriver/Integration-SB-04-openrc.sh b/test/ete/labs/windriver/Integration-SB-04-openrc.sh index 52eb4df31..e7cee93b9 100644 --- a/test/ete/labs/windriver/Integration-SB-04-openrc.sh +++ b/test/ete/labs/windriver/Integration-SB-04-openrc.sh @@ -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 |