So, I'm not blind; it's a dependency of qemu. Not sure what to do now.
Ignore it? Or fix the package so pacman creates that group upon installation of brltty?
Does qemu really need this, or can this be an optional dependency?
Edit: So I'm digging right now. brlapi contains a sysusers.conf:
g brlapi -
, and we have a sysusers daemon/oneshot service that reads these files and creates the appropriate sysgroups/sysusers. But on my system (using runit),
1: tempfiles-setup runs before sysusers.
2: I don't have a brlapi group, even though sysusers should create it and does not show any errors...
(EDIT: tldr, jump to Edit 3)
What I found so far, is, that other sysusers.conf files have more columns, e.g.:
g wheel - - -
Edit 2: I straced sysusers and found this:
stat("\177/usr/lib/sysusers.d", 0x7ffd0a643e70) = -1 ENOENT (Datei oder Verzeichnis nicht gefunden)
stat("/run/sysusers.d", 0x7ffd0a643e70) = -1 ENOENT (Datei oder Verzeichnis nicht gefunden)
stat("/etc/sysusers.d", 0x7ffd0a643e70) = -1 ENOENT (Datei oder Verzeichnis nicht gefunden)
I wonder if sysusers ever looks into /usr/lib/sysusers.d, as there is a \177 before in the stat call. Can someone look into this?
Edit 3: so this comes from /usr/lib/opensysusers/common.sh. On my system, that file ends in:
sysusers_dirs="${root:=}/usr/lib/sysusers.d:${root}/run/sysusers.d:${root}/etc/sysusers.d"
(notice the ${root:=} and the ':' as separator) and I don't know why. compare this.
Can someone explain, why on my system the package on version 0.5.1-4 has a line, that does not occur in any git commit?
Edit 4: so this does com from this branch. The last line triggers a bash bug, where the \177 is inserted.