From 147287996a975b037c5787435df81eabbe0dc46a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Gagn=C3=A9?= Date: Wed, 1 Apr 2026 15:27:15 -0400 Subject: [PATCH] Add --config-dir option to neutron-ovn-db-sync-util MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I5e8e982f1ca7bbea42dbfca01c3b06e62521bdf3 Signed-off-by: Mathieu Gagné --- neutron/templates/bin/_neutron-ovn-db-sync.sh.tpl | 1 + releasenotes/notes/neutron-4f9263300df02c9b.yaml | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 releasenotes/notes/neutron-4f9263300df02c9b.yaml diff --git a/neutron/templates/bin/_neutron-ovn-db-sync.sh.tpl b/neutron/templates/bin/_neutron-ovn-db-sync.sh.tpl index 918375a482..f05be248cc 100644 --- a/neutron/templates/bin/_neutron-ovn-db-sync.sh.tpl +++ b/neutron/templates/bin/_neutron-ovn-db-sync.sh.tpl @@ -31,4 +31,5 @@ neutron-ovn-db-sync-util \ --config-file /etc/neutron/l2gw_plugin.ini \ {{- end }} --config-file /etc/neutron/plugins/ml2/ml2_conf.ini \ + --config-dir /etc/neutron/neutron.conf.d \ --ovn-neutron_sync_mode "$1" diff --git a/releasenotes/notes/neutron-4f9263300df02c9b.yaml b/releasenotes/notes/neutron-4f9263300df02c9b.yaml new file mode 100644 index 0000000000..90ebbdfde8 --- /dev/null +++ b/releasenotes/notes/neutron-4f9263300df02c9b.yaml @@ -0,0 +1,5 @@ +--- +neutron: + - | + Add missing `--config-dir` option to `neutron-ovn-db-sync-util`. +...