Support Router Advertisement Daemon (radvd) for IPv6
Install radvd if the l3 service is enabled.
Partially implements blueprint: neutron-ipv6-radvd-ra
Change-Id: I749b31dcaad072a35e5921579b50f1ca451b1383
diff --git a/lib/neutron b/lib/neutron
index 2763f26..4d0a7e1 100644
--- a/lib/neutron
+++ b/lib/neutron
@@ -492,6 +492,10 @@
# install_neutron_agent_packages() - Collect source and prepare
function install_neutron_agent_packages {
+ # radvd doesn't come with the OS. Install it if the l3 service is enabled.
+ if is_service_enabled q-l3; then
+ install_package radvd
+ fi
# install packages that are specific to plugin agent(s)
if is_service_enabled q-agt q-dhcp q-l3; then
neutron_plugin_install_agent_packages