From e5fb255e76a1b8bf6ad7463c987ce6dd5daabc6b Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 08:45:09 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Improve=20tags=20format?= =?UTF-8?q?ting=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the `container_tags` variable to use comma join for better readability and consistency. --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 7db23ba..f869ec5 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -69,7 +69,7 @@ -onboot {{ container_onboot }} \ -protection {{ container_protection }} \ -unprivileged {{ container_unprivileged }} \ - -tags "{{ container_tags }}" \ + -tags "{{ container_tags | join(',') }}" \ -features {{ container_features }} args: creates: "/etc/pve/lxc/{{ container_id }}.conf"