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
This commit is contained in:
Abhishek Raut 2015-08-22 08:58:08 -07:00
parent d5593953a7
commit 3953d68031

View File

@ -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