1f6e29fbe2
The neutron-dhcp-agent might rely on options defined in openvswitch_agent.ini. By default this config file is not passed to neutron-dhcp-agent daemon, and therefore those options are not loaded and fall back for the default values and by that inhibits the desired behavior. Charm helpers' PR: https://github.com/juju/charm-helpers/pull/615 Depends-on: I39024855c3e42ee135b6ad5e7618a770219b6994 Closes-bug: #1832021 Change-Id: I134c8077ee52ccdb4e383109ecbea27ed1633fb8
12 lines
640 B
Bash
12 lines
640 B
Bash
# This is a POSIX shell fragment -*- sh -*-
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
# Configuration managed by neutron-openvswitch charm
|
|
# Service restart triggered by remote application: {{ restart_trigger }}
|
|
# {{ restart_trigger_ovs }}
|
|
###############################################################################
|
|
{% if append_ovs_config -%}
|
|
DAEMON_ARGS="$DAEMON_ARGS --config-file=/etc/neutron/plugins/ml2/openvswitch_agent.ini"
|
|
{% endif -%}
|