From 0241afcd2ee3aed1f3d65449db616001ae1c3dda Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 3 Nov 2025 17:38:12 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20password=20enc?= =?UTF-8?q?ryption=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the way passwords are encrypted in the setupacdc.yml file, now using a hardcoded value instead of environment variable. This change simplifies the configuration process but may impact security if not handled properly. --- tasks/setupacdc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 27ba7e2..91407f4 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 123456 \ -ssh-public-keys {{ ssh_keys_file }} \ -cores {{ container_cores }} \ -memory {{ container_memory }} \ @@ -62,7 +62,7 @@ args: creates: "/etc/pve/lxc/{{ container_id }}.conf" # no_log: true - +# -password {{ container_password }} \ # -rootfs {{ container_storage }}:{{ container_id }}/vm-{{ container_id }}-disk-0.raw,size=7G \ # -timezone: {{ localization_timezone }} \