From a2deff2d4333230ebcd6ba593c09c2636c50ae02 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 4 Nov 2025 19:04:30 +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 for better readability and security. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 85a79a6..2852c75 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 }} \