Install radvd if the l3 service is enabled.
Partially implements blueprint: neutron-ipv6-radvd-ra
Change-Id: I749b31dcaad072a35e5921579b50f1ca451b1383
| ... | ... |
@@ -492,6 +492,10 @@ function install_neutronclient {
|
| 492 | 492 |
|
| 493 | 493 |
# install_neutron_agent_packages() - Collect source and prepare |
| 494 | 494 |
function install_neutron_agent_packages {
|
| 495 |
+ # radvd doesn't come with the OS. Install it if the l3 service is enabled. |
|
| 496 |
+ if is_service_enabled q-l3; then |
|
| 497 |
+ install_package radvd |
|
| 498 |
+ fi |
|
| 495 | 499 |
# install packages that are specific to plugin agent(s) |
| 496 | 500 |
if is_service_enabled q-agt q-dhcp q-l3; then |
| 497 | 501 |
neutron_plugin_install_agent_packages |