From 05ab9608520f311a6901c90adcac6e3753047953 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 09:31:25 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Fix=20typo=20in=20hostn?= =?UTF-8?q?ame=20variable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrected the typo in the `addc_hostname` variable to ensure correct host selection for LXC provisioning. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 4cf128e..b1d2e1d 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 | lower }}" gather_facts: false become: true \ No newline at end of file