From 7f79e3cc990d38398d87fba4db0a2bd853a1951a Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 07:35:28 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20use=20Ansible=20shell=20command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the pct create command to use the new ansible.builtin.shell module, allowing for more flexibility and consistency in container creation. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index b7dc147..2cdc44f 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -9,7 +9,7 @@ tasks: - name: Create LXC container using pct command - shell: | + ansible.builtin.shell: | pct create 200 '/var/lib/vz/template/cache/debian-13-standard_13.1-1_amd64.tar.zst' \ -ostype debian \ -hostname {{ addc_hostname }} \