9ce4995205
Add a new option to provide the ability to specify flags in the dnsmasq.conf file. This allows users to configure the dnsmasq processes used by the neutron-dhcp-agent when local dhcp and metadata are enabled for provider networks. Change-Id: I2bab8a00322afb0f81986001c86f0ef4fc535651 Closes-Bug: #1684231
21 lines
677 B
INI
21 lines
677 B
INI
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
# {{ restart_trigger_dhcp }}
|
|
###############################################################################
|
|
|
|
[DEFAULT]
|
|
state_path = /var/lib/neutron
|
|
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
|
|
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
|
|
root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
|
|
{% if dnsmasq_flags -%}
|
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
|
{% endif -%}
|
|
|
|
enable_metadata_network = True
|
|
enable_isolated_metadata = True
|
|
|
|
ovs_use_veth = True
|