f10dcfe82d
The nsx-v FWaaS driver will add the configured firewall rules to the router edges. Currently there is not support for shared routers. The rules will be edded after the current rules (NAT, LBaaS, external traffic) for exclusive routers edges and distributed routers PLR edged. Change-Id: I82ba90070ef4e739a0b5c4463ef03a807e26adfb
22 lines
576 B
Bash
Executable File
22 lines
576 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
DIR=$(dirname $0)
|
|
${DIR}/tox_install_project.sh neutron neutron $*
|
|
${DIR}/tox_install_project.sh networking-l2gw networking_l2gw $*
|
|
${DIR}/tox_install_project.sh networking-sfc networking_sfc $*
|
|
${DIR}/tox_install_project.sh neutron-lbaas neutron_lbaas $*
|
|
${DIR}/tox_install_project.sh vmware-nsxlib vmware_nsxlib $*
|
|
${DIR}/tox_install_project.sh neutron-fwaas neutron_fwaas $*
|
|
|
|
CONSTRAINTS_FILE=$1
|
|
shift
|
|
|
|
install_cmd="pip install"
|
|
if [ $CONSTRAINTS_FILE != "unconstrained" ]; then
|
|
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
|
|
fi
|
|
|
|
$install_cmd -U $*
|