From 26caf0c9ca17c73f0ee87f94569826d329f8927e Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 3 Nov 2025 17:36:53 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20password=20and?= =?UTF-8?q?=20SSH=20keys=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the password and SSH public keys configuration in the setupacdc.yml file to improve security and consistency. --- tasks/setupacdc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 8d1e7f9..27ba7e2 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -46,8 +46,8 @@ pct create {{ container_id }} {{ container_template }} \ -ostype {{ container_ostype }} \ -hostname {{ container_hostname }} \ - -password {{ container_password }} \ - -ssh-public-keys "{{ ssh_keys_file }}" \ + -password "{{ container_password }}" \ + -ssh-public-keys {{ ssh_keys_file }} \ -cores {{ container_cores }} \ -memory {{ container_memory }} \ -swap {{ container_swap }} \