Stop running setup_devel for Ryu
It doesn't work here for various reasons. - Ryu's setup.py is incompatible with global requirements - This code is called before install_infra. Ryu is not a part of OpenStack anyway. Closes-Bug: 1287569 Change-Id: I01a942411f7d06bdf8f1fec5d1a0bc319560f329
This commit is contained in:
parent
bb2d40b87c
commit
0e598c3c81
9
lib/neutron_thirdparty/ryu
vendored
9
lib/neutron_thirdparty/ryu
vendored
@ -18,14 +18,8 @@ RYU_OFP_PORT=${RYU_OFP_PORT:-6633}
|
||||
# Ryu Applications
|
||||
RYU_APPS=${RYU_APPS:-ryu.app.simple_isolation,ryu.app.rest}
|
||||
|
||||
# configure_ryu can be called multiple times as neutron_pluing/ryu may call
|
||||
# this function for neutron-ryu-agent
|
||||
_RYU_CONFIGURED=${_RYU_CONFIGURED:-False}
|
||||
function configure_ryu {
|
||||
if [[ "$_RYU_CONFIGURED" == "False" ]]; then
|
||||
setup_develop $RYU_DIR
|
||||
_RYU_CONFIGURED=True
|
||||
fi
|
||||
:
|
||||
}
|
||||
|
||||
function init_ryu {
|
||||
@ -63,6 +57,7 @@ _RYU_INSTALLED=${_RYU_INSTALLED:-False}
|
||||
function install_ryu {
|
||||
if [[ "$_RYU_INSTALLED" == "False" ]]; then
|
||||
git_clone $RYU_REPO $RYU_DIR $RYU_BRANCH
|
||||
export PYTHONPATH=$RYU_DIR:$PYTHONPATH
|
||||
_RYU_INSTALLED=True
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user