From 69c90996158aa73cf4c2d1765ee3ad5cfb68f692 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 1 Jul 2025 17:40:12 -0700 Subject: [PATCH] openqa/worker tap: 'nogroup' is no more, must use 'nobody' Signed-off-by: Adam Williamson --- roles/openqa/worker/tasks/tap-setup.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openqa/worker/tasks/tap-setup.yml b/roles/openqa/worker/tasks/tap-setup.yml index a6af8e55d8..7c0a9549af 100644 --- a/roles/openqa/worker/tasks/tap-setup.yml +++ b/roles/openqa/worker/tasks/tap-setup.yml @@ -62,7 +62,7 @@ failed_when: "1 != 1" - name: Create openvswitch interfaces for tap devices - ansible.builtin.shell: "nmcli con add type tun mode tap owner $(id -u _openqa-worker) group $(getent group nogroup | cut -f3 -d:) con.int tap{{ item }} master tap{{ item }}" + ansible.builtin.shell: "nmcli con add type tun mode tap owner $(id -u _openqa-worker) group $(getent group nobody | cut -f3 -d:) con.int tap{{ item }} master tap{{ item }}" with_sequence: start=0 end={{ openqa_workers | int }} when: tapsexist.rc > 0