aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2022-02-14 10:14:20 -0500
committerLibravatar GitHub <noreply@github.com>2022-02-14 10:14:20 -0500
commit6f266dbd80508ae62c7a41e6d57e6d4979e22e0d (patch)
treec23c4492f467656281f4de375dc8248aaa506cdc
parentMerge pull request #4920 from Fred-Barclay/secpol_update (diff)
parentDisable/comment message about nogroups being ignored (diff)
downloadfirejail-6f266dbd80508ae62c7a41e6d57e6d4979e22e0d.tar.gz
firejail-6f266dbd80508ae62c7a41e6d57e6d4979e22e0d.tar.zst
firejail-6f266dbd80508ae62c7a41e6d57e6d4979e22e0d.zip
Merge pull request #4933 from kmk3/disable-nogroups-msg
Disable/comment message about nogroups being ignored
-rw-r--r--src/firejail/util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/firejail/util.c b/src/firejail/util.c
index 79ebfa1dd..109105630 100644
--- a/src/firejail/util.c
+++ b/src/firejail/util.c
@@ -125,7 +125,8 @@ int check_can_drop_all_groups() {
125 * and #4603. 125 * and #4603.
126 */ 126 */
127 if (access("/run/systemd/seats/", F_OK) != 0) { 127 if (access("/run/systemd/seats/", F_OK) != 0) {
128 fwarning("logind not detected, nogroups command ignored\n"); 128 // TODO: wrc causes this to be printed even with (e)logind (see #4930)
129 //fwarning("logind not detected, nogroups command ignored\n");
129 can_drop_all_groups = 0; 130 can_drop_all_groups = 0;
130 goto out; 131 goto out;
131 } 132 }