From 9f1ee6b80ee37b82bc40a5cda95d79b3bb96a276 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 09:22:09 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Improve=20host=20variab?= =?UTF-8?q?le=20formatting=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the `hosts` variable to use double quotes for better readability and consistency with other Ansible variables. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 1c2d9e4..4cf128e 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -79,6 +79,6 @@ # ansible_user: root - name: Provision inside {{ addc_hostname }} LXC - hosts: {{ addc_hostname }} + hosts: "{{ addc_hostname }}" gather_facts: false become: true \ No newline at end of file