From 3953d68031ea31b213f96ce1d70cbd03b916e36e Mon Sep 17 00:00:00 2001 From: Abhishek Raut Date: Sat, 22 Aug 2015 08:58:08 -0700 Subject: [PATCH] Install vmware-nsx during 'stack install' phase This patch moves the install call for vmware-nsx plugin from post-config phase to the install phase of devstack. Now the vmware-nsx repo will be installed before the neutron database migration begins, which will correctly load vmware specific tables in the neutron database before any attempt to create a neutron resource is made i.e. create_network will no longer fail with 'neutron_nsx_firewall_section_mappings does not exists' error Change-Id: I6bd8cfdb4600938fc18c8dc7c51d849c76e3c120 --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 9d6fdf8615..4d0e288bea 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -19,7 +19,7 @@ dir=${GITDIR['vmware-nsx']}/devstack -if [[ "$1" == "stack" && "$2" == "post-config" ]]; then +if [[ "$1" == "stack" && "$2" == "install" ]]; then setup_develop ${GITDIR['vmware-nsx']} fi