79350f79d8
Resolves: #2137584,#2138081,#2141979
54 lines
1.9 KiB
Diff
54 lines
1.9 KiB
Diff
From 49fab9715ce09b86652e9855555e4ab4fc185220 Mon Sep 17 00:00:00 2001
|
|
From: rpm-build <rpm-build>
|
|
Date: Wed, 1 Aug 2018 10:58:28 +0200
|
|
Subject: [PATCH] logind: set RemoveIPC to false by default
|
|
|
|
RHEL-only
|
|
|
|
Related: #2138081
|
|
---
|
|
man/logind.conf.xml | 2 +-
|
|
src/login/logind-core.c | 2 +-
|
|
src/login/logind.conf.in | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/man/logind.conf.xml b/man/logind.conf.xml
|
|
index 9682add08c..1a87cf6baf 100644
|
|
--- a/man/logind.conf.xml
|
|
+++ b/man/logind.conf.xml
|
|
@@ -341,7 +341,7 @@
|
|
user fully logs out. Takes a boolean argument. If enabled, the user may not consume IPC resources after the
|
|
last of the user's sessions terminated. This covers System V semaphores, shared memory and message queues, as
|
|
well as POSIX shared memory and message queues. Note that IPC objects of the root user and other system users
|
|
- are excluded from the effect of this setting. Defaults to <literal>yes</literal>.</para></listitem>
|
|
+ are excluded from the effect of this setting. Defaults to <literal>no</literal>.</para></listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
diff --git a/src/login/logind-core.c b/src/login/logind-core.c
|
|
index 02adc81909..b5050c54c4 100644
|
|
--- a/src/login/logind-core.c
|
|
+++ b/src/login/logind-core.c
|
|
@@ -34,7 +34,7 @@ void manager_reset_config(Manager *m) {
|
|
|
|
m->n_autovts = 6;
|
|
m->reserve_vt = 6;
|
|
- m->remove_ipc = true;
|
|
+ m->remove_ipc = false;
|
|
m->inhibit_delay_max = 5 * USEC_PER_SEC;
|
|
m->user_stop_delay = 10 * USEC_PER_SEC;
|
|
|
|
diff --git a/src/login/logind.conf.in b/src/login/logind.conf.in
|
|
index 0b10df6839..09c363817a 100644
|
|
--- a/src/login/logind.conf.in
|
|
+++ b/src/login/logind.conf.in
|
|
@@ -43,7 +43,7 @@
|
|
#IdleActionSec=30min
|
|
#RuntimeDirectorySize=10%
|
|
#RuntimeDirectoryInodesMax=
|
|
-#RemoveIPC=yes
|
|
+#RemoveIPC=no
|
|
#InhibitorsMax=8192
|
|
#SessionsMax=8192
|
|
#StopIdleSessionSec=infinity
|