From 88b55e55995bdfaa9d2937591639fd997f7794a5 Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 2 Nov 2025 08:40:18 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20container=20ta?= =?UTF-8?q?gs=20in=20setupacdc.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the container tags to exclude 'test' and added a comment explaining the change, allowing for future flexibility in managing container tags. --- tasks/setupacdc.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 3ae2110..7db23ba 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -26,7 +26,10 @@ container_onboot: 1 container_protection: 0 container_unprivileged: 1 - container_tags: "ansible_managed,test" + # container_tags: "ansible_managed,test" + container_tags: + - ansible_managed + - test tasks: @@ -66,7 +69,7 @@ -onboot {{ container_onboot }} \ -protection {{ container_protection }} \ -unprivileged {{ container_unprivileged }} \ - -tags {{ container_tags }} \ + -tags "{{ container_tags }}" \ -features {{ container_features }} args: creates: "/etc/pve/lxc/{{ container_id }}.conf"