summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2017-11-10 16:39:25 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-11-10 16:39:25 +0000
commit323368adf57395f8cb3dab33d04bad453b433eb2 (patch)
tree7bcaf58ce65ea06debb987ff4d2dc3c0563eb9ef /utils
parentf336990e8804d33cd643a2bf5172a1d1730a46b8 (diff)
parentaa90e36dd25675bff00da117f085a5fde61a4fd5 (diff)
Merge "Modify the fuel deployment type judgement in fetch-os_creds.sh"
Diffstat (limited to 'utils')
-rwxr-xr-xutils/fetch_os_creds.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fetch_os_creds.sh b/utils/fetch_os_creds.sh
index ac7595053..4bc585885 100755
--- a/utils/fetch_os_creds.sh
+++ b/utils/fetch_os_creds.sh
@@ -114,7 +114,7 @@ if [ "$installer_type" == "fuel" ]; then
ssh ${ssh_options} "${ssh_user}@${controller_ip}" \
"sudo cat /root/keystonercv3" > "${dest_path}"
- if [[ "${BUILD_TAG}" =~ "baremetal" ]]; then
+ if [[ ! "${BUILD_TAG}" =~ 'virtual' ]]; then
ssh ${ssh_options} "${ssh_user}@${installer_ip}" \
"cat /etc/ssl/certs/os_cacert" > "${os_cacert}"
fi