Browse code

Fix syntax error in script

One of the recent patches introduced a syntax error in the marconi
script. This patch fixes the issue & gets marconi running in
devstack again.

Change-Id: I46a039f72174c4898869983de03a1e29cbe435bf

Malini Kamalambal authored on 2014/05/23 01:07:34
Showing 1 changed files
... ...
@@ -154,7 +154,7 @@ function install_marconiclient {
154 154
 
155 155
 # start_marconi() - Start running processes, including screen
156 156
 function start_marconi {
157
-    if [[ ${USE_SCREEN,,} == "false" ]];; then
157
+    if [[ "$USE_SCREEN" = "False" ]]; then
158 158
         screen_it marconi-server "marconi-server --config-file $MARCONI_CONF --daemon"
159 159
     else
160 160
         screen_it marconi-server "marconi-server --config-file $MARCONI_CONF"