From 59ce0ce3daac894debe19820d4b426673e99f75b Mon Sep 17 00:00:00 2001 From: Kirill Zaitsev Date: Wed, 1 Jun 2016 22:00:19 +0300 Subject: [PATCH] [devstack] Pass MURANO_USE_GLARE as bool, not as str Before this patch devstack plugin for murano set the MURANO_USE_GLARE variable to 'False', which was evaluated to True by default. This patch fixes the issue, by removing quotes around the variable. Related-Bug: #1587883 Related bp: murano-glare-devstack-testing Change-Id: If2e5ae7a1599d424e518d4cf7bbc3194cea20461 --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index ebfa050f5..0cee760d2 100755 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -422,7 +422,7 @@ DATABASES = { } SESSION_ENGINE = 'django.contrib.sessions.backends.db' MURANO_REPO_URL = '$MURANO_REPOSITORY_URL' -MURANO_USE_GLARE = '$murano_use_glare' +MURANO_USE_GLARE = $murano_use_glare #------------------------------------------------------------------------------- #MURANO_CONFIG_SECTION_END