refactor ♻️: Improve formatting and consistency in setupacdc.yml

Refactored the setupacdc.yml file to improve formatting, consistency, and readability. This includes standardizing indentation, spacing, and variable naming conventions.
This commit is contained in:
2025-11-04 19:18:58 +01:00
parent bb83d9368b
commit e327754260
2 changed files with 26 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
- hosts: "{{ dest_hosts }}"
- hosts: '{{ dest_hosts }}'
gather_facts: yes
tasks:
@@ -46,7 +46,7 @@
- name: Show Details for Each Interface (Excluding Loopback)
ansible.builtin.debug:
var: hostvars['localhost']['ansible_' + item]
loop: "{{ ansible_interfaces }}"
loop: '{{ ansible_interfaces }}'
when: hostvars['localhost']['ansible_' + item] is defined and item not in ['lo']
# ----------------------------------------------------------------------