Add IPV6 radvd package to neutron-l3-agent

When a IPV6 subnet created in SLAAC mode, neutron-l3-agent fails if
radvd is not installed. 'radvd' daemon is required in generation of RA
messages by virtual routers.

Change-Id: I16e856bf4563ac1dba5b38b7ed7fdaa52e629ee4
This commit is contained in:
Murali Annamneni 2017-07-03 12:37:13 +01:00
parent f26b1ba0b3
commit fa64c72060
1 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,11 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
] %}
{% endif %}
{% elif install_type == 'source' %}
{% set neutron_l3_agent_packages = [
'radvd'
] %}
{% endif %}
{{ macros.install_packages(neutron_l3_agent_packages | customizable("packages")) }}