Skip to content

Commit

Permalink
Merge pull request #4933 from kmk3/disable-nogroups-msg
Browse files Browse the repository at this point in the history
Disable/comment message about nogroups being ignored
  • Loading branch information
netblue30 authored Feb 14, 2022
2 parents d9e563d + 1db6740 commit 6f266db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/firejail/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ int check_can_drop_all_groups() {
* and #4603.
*/
if (access("/run/systemd/seats/", F_OK) != 0) {
fwarning("logind not detected, nogroups command ignored\n");
// TODO: wrc causes this to be printed even with (e)logind (see #4930)
//fwarning("logind not detected, nogroups command ignored\n");
can_drop_all_groups = 0;
goto out;
}
Expand Down

0 comments on commit 6f266db

Please sign in to comment.