openqa/worker tap: 'nogroup' is no more, must use 'nobody'

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson
2025-07-01 17:40:12 -07:00
parent 61046a1ca6
commit 69c9099615

View File

@@ -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