From fa68e6b6a804592a713ab19bde4f86ad6427409b Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 10:11:41 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20use=20double=20quotes=20for=20ssh-public-keys?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed formatting issue in setupacdc.yml file by updating the ssh-public-keys parameter to use double quotes instead of single quotes. This change ensures consistent and correct parsing of the configuration file. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 7f1076d..a9057c7 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -38,7 +38,7 @@ -ostype {{ container_ostype }} \ -hostname {{ container_hostname }} \ -password {{ container_password }} \ - -ssh-public-keys {{ container_pubkey }} \ + -ssh-public-keys "{{ container_pubkey }}" \ -cores {{ container_cores }} \ -memory {{ container_memory }} \ -swap {{ container_swap }} \