From 4d1ce5d02052cf1d15e3fb9ee771d911a06317b3 Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 4 Nov 2025 17:51:36 +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 for better readability and consistency with other shell commands. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 1eb8356..e82f4b9 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 }} \