From 064f775a130c365dbc563cb30b8f688650277273 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 4 Nov 2025 17:54:35 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20password=20for?= =?UTF-8?q?mat=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the password format to use double quotes instead of single quotes, ensuring consistency with other configuration files. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 2852c75..85a79a6 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -46,7 +46,7 @@ pct create {{ container_id }} {{ container_template }} \ -ostype {{ container_ostype }} \ -hostname {{ container_hostname }} \ - -password "{{ container_password }}" \ + -password {{ container_password }} \ -ssh-public-keys {{ ssh_keys_file }} \ -cores {{ container_cores }} \ -memory {{ container_memory }} \