From c42ed258b4ae88c208650185298c0b673c3439c3 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Mon, 17 Jun 2013 13:23:44 +1000 Subject: [PATCH] Fix syntax error in lib/tempest Fix syntax error in lib/tempest: Created tempest configuration file: 21:06:30 ++ CINDER_MULTI_LVM_BACKEND=False 21:06:30 ++ '[' False == 'True ]' 21:06:30 /home/stack/devstack/lib/tempest: line 278: [: missing `]' Change-Id: Ib4e393dad12751bdfb0e6f8fac3accd380a1f760 --- lib/tempest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tempest b/lib/tempest index e3faa2eb9f..277c68abcd 100644 --- a/lib/tempest +++ b/lib/tempest @@ -275,7 +275,7 @@ function configure_tempest() { # Volume CINDER_MULTI_LVM_BACKEND=$(trueorfalse False $CINDER_MULTI_LVM_BACKEND) - if [ $CINDER_MULTI_LVM_BACKEND == "True "]; then + if [ $CINDER_MULTI_LVM_BACKEND == "True" ]; then iniset $TEMPEST_CONF volume multi_backend_enabled "True" iniset $TEMPEST_CONF volume backend1_name "LVM_iSCSI" iniset $TEMPEST_CONF volume backend2_name "LVM_iSCSI_2"