From 52308475e8e0cf8a08c7bdaa7961a3f4b17f4334 Mon Sep 17 00:00:00 2001 From: Matthias Hartmann Date: Fri, 24 Apr 2026 23:30:54 +0200 Subject: [PATCH] fix: install missing frr-reload.service on dell_sonic leaves --- deploy_partition.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/deploy_partition.yaml b/deploy_partition.yaml index 53785d44..705d707a 100644 --- a/deploy_partition.yaml +++ b/deploy_partition.yaml @@ -20,6 +20,10 @@ hosts: dell_sonic any_errors_fatal: true become: true + handlers: + - name: reload systemd daemon + systemd: + daemon_reload: true tasks: - name: Check for bgpd.conf presence ansible.builtin.stat: @@ -38,6 +42,15 @@ state: present key: "{{ lookup('file', 'ssh/id_ed25519.pub') }}" + - name: Install frr-reload.service + copy: + src: /root/.ansible/roles/metal-roles/partition/roles/sonic-config/files/frr-reload.service + dest: /etc/systemd/system/frr-reload.service + remote_src: false + notify: + - reload systemd daemon + changed_when: true + - name: Activate IP MASQUERADE on eth0 ansible.builtin.iptables: chain: POSTROUTING