This commit is contained in:
2025-11-17 16:39:38 +02:00
parent 4574ca15b2
commit 8c91cf8342

View File

@@ -1026,6 +1026,10 @@
register: dev2_sha256_before
changed_when: false
- name: Refresh ARP 1 on DEV1s LAN (send unsolicited ARP from temporary IP)
when: dev2_conn_method == "tunnel"
ansible.builtin.raw: arping -U -I eth0 192.168.1.11 -c 3
- name: Copy bootenv image to DEV2 if missing or sha256 mismatch
when: local_img.stat.exists and dev2_passfile_used != "NONE" and not (_blocked | default(false)) and ((dev2_sha256_before.stdout | trim) != (bootenv_sha256 | trim))
delegate_to: localhost