Merge "Change devstack script to correctly configure driver"

This commit is contained in:
Zuul 2020-12-04 17:11:58 +00:00 committed by Gerrit Code Review
commit af3e3b6703
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,9 @@ function _configure_provider_driver {
}
function is_ovn_enabled {
[[ $NEUTRON_AGENT == "ovn" ]] && return 0
if [[ $NEUTRON_AGENT == "ovn" || $Q_AGENT == "ovn" ]]; then
return 0
fi
return 1
}