Problem: https://github.com/wayland-project/weston/blob/master/libweston/weston-launch.c#L158 This will exit early if user belongs to wheel group (id=0) it is listed before weston-launch in the list of groups. Solution: Get number of groups (=n) and iterate from 0 to n-1. n = getgroups(0, NULL); for (i = 0; i<n; ++i) { ... }
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/wayland/weston/issues/86.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.