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:
@@ -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']
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user