style 💎: Improve host variable formatting in setupacdc.yml

Updated the `hosts` variable to use double quotes for better readability and consistency with other Ansible variables.
This commit is contained in:
2025-11-02 09:22:09 +01:00
parent 27d447338d
commit 9f1ee6b80e

View File

@@ -79,6 +79,6 @@
# ansible_user: root # ansible_user: root
- name: Provision inside {{ addc_hostname }} LXC - name: Provision inside {{ addc_hostname }} LXC
hosts: {{ addc_hostname }} hosts: "{{ addc_hostname }}"
gather_facts: false gather_facts: false
become: true become: true