summaryrefslogtreecommitdiff
path: root/integration/scripts
diff options
context:
space:
mode:
authorLingxian Kong <anlin.kong@gmail.com>2019-12-08 20:20:43 +1300
committerLingxian Kong <anlin.kong@gmail.com>2019-12-08 21:11:44 +0000
commit4c8482095d887a7ad8a6f7be8ee467d09fb07b15 (patch)
tree2f810b91249ad2d3ca7783264d89fed8132db55c /integration/scripts
parent4c551947c9983109d494de92275ca4be2d11510d (diff)
downloadtrove-4c8482095d887a7ad8a6f7be8ee467d09fb07b15.tar.gz
Fix Trove periodic CI jobs
Change-Id: I11456aaeb2d417dbae6bdb0e51944aa122c521e0
Diffstat (limited to 'integration/scripts')
-rw-r--r--integration/scripts/functions_qemu4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/scripts/functions_qemu b/integration/scripts/functions_qemu
index db32f52c..39dcd958 100644
--- a/integration/scripts/functions_qemu
+++ b/integration/scripts/functions_qemu
@@ -25,7 +25,7 @@ function build_vm() {
# In dev mode, the trove guest agent needs to download trove code from
# trove-taskmanager host during service initialization.
- if [[ "${dev_mode}" == "true" ]]; then
+ if [[ "${dev_mode,,}" == "true" ]]; then
export PATH_TROVE=${PATH_TROVE}
export ESCAPED_PATH_TROVE=$(echo ${PATH_TROVE} | sed 's/\//\\\//g')
export GUEST_LOGDIR=${GUEST_LOGDIR:-"/var/log/trove/"}
@@ -61,7 +61,7 @@ function build_vm() {
elementes="$elementes ${guest_os}"
- if [[ "${dev_mode}" == "false" ]]; then
+ if [[ "${dev_mode,,}" == "false" ]]; then
elementes="$elementes pip-and-virtualenv"
elementes="$elementes pip-cache"
elementes="$elementes guest-agent"