feat: adding 2.2.3-r9800 0009

This commit is contained in:
2025-10-31 00:09:09 +02:00
parent 1c2077aeb8
commit 8b8a862cc2

View File

@@ -13,8 +13,8 @@
rmq_exchange: "controls" rmq_exchange: "controls"
control_queue: "queue_controls" control_queue: "queue_controls"
# --- Manual run defaults (so we can execute without -e) --- # --- Manual run defaults (so we can execute without -e) ---
# These are safe to leave here; anything passed via -e will still override them. # These are safe to leave here; anything passed via -e will still override them.
attempt: 1 attempt: 1
max_attempts: 3 max_attempts: 3
current_delay_sec: 300 current_delay_sec: 300
@@ -25,6 +25,7 @@
target_version_full: "" target_version_full: ""
schema_version: 1 schema_version: 1
# Probing/SSH defaults # Probing/SSH defaults
tcp_port: 22 tcp_port: 22
nc_timeout: 5 nc_timeout: 5
@@ -157,7 +158,10 @@
ignore_errors: true ignore_errors: true
- name: Set eth0_macaddress fact - name: Set eth0_macaddress fact
when: mac_probe is defined and mac_probe.rc == 0 when:
- mac_probe is defined
- (mac_probe.skipped | default(false)) == false
- (mac_probe.rc | default(1)) == 0
ansible.builtin.set_fact: ansible.builtin.set_fact:
eth0_macaddress: "{{ (mac_probe.stdout | default('') | trim) }}" eth0_macaddress: "{{ (mac_probe.stdout | default('') | trim) }}"