From ddcdeccab4e200c0110248b4e086437bf7b46fdd Mon Sep 17 00:00:00 2001 From: Thomas Stallinger Date: Sat, 1 Aug 2026 19:50:53 +0200 Subject: [PATCH] Fix tag propagation from include_role to role tasks in site.yml Tags on include_role only apply to the include statement itself, not the role's inner tasks, unless passed via apply. Without this, ansible-pull --tags silently skipped every role task, so no marker files were ever written during the QEMU agent test. Co-Authored-By: Claude Sonnet 5 --- site.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site.yml b/site.yml index dff541b..58b800f 100644 --- a/site.yml +++ b/site.yml @@ -4,12 +4,18 @@ tasks: - include_role: name: guest-session + apply: + tags: guest-session tags: guest-session - include_role: name: brave-fedora + apply: + tags: brave-fedora tags: brave-fedora - include_role: name: onlyoffice-fedora + apply: + tags: onlyoffice-fedora tags: onlyoffice-fedora