From 441ff07b97b4d44a25479912ff2878be3fa6e9a9 Mon Sep 17 00:00:00 2001 From: Bharat Kumar Kobagana Date: Thu, 8 Jan 2015 12:26:26 +0530 Subject: [PATCH] Fixing the problem in loading plugins This patch fixes the problem in loading the plugins in devstack by defining the "plugins" variable in "run_plugins" function of devstack/functions-common file. Change-Id: I9fb0e24bf1fd282931a8489e0a8ec0c9ea078520 Closes-Bug: 1408571 --- functions-common | 3 +++ 1 file changed, 3 insertions(+) diff --git a/functions-common b/functions-common index 56106b3194..7a6c3a127c 100644 --- a/functions-common +++ b/functions-common @@ -1803,6 +1803,9 @@ function load_plugin_settings { function run_plugins { local mode=$1 local phase=$2 + + local plugins="${DEVSTACK_PLUGINS}" + local plugin for plugin in ${plugins//,/ }; do local dir=${GITDIR[$plugin]} if [[ -f $dir/devstack/plugin.sh ]]; then