diff options
author | Andy Wingo <wingo@pobox.com> | 2015-08-20 09:55:37 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2015-08-20 09:55:37 +0200 |
commit | 92947a0878c5d129adb37ddbfdef35274ef5c6ae (patch) | |
tree | 4ea6668baf00436d62b67e44849a296dae8d8ccd | |
parent | 116d0f39ea802301d464823ef2c76b3f2dba6c6b (diff) |
Don't try to set up cgroups for new userselogind/v219.4
* src/login/logind-session.c (session_start): Punt on setting up a
scope.
-rw-r--r-- | src/login/logind-session.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/login/logind-session.c b/src/login/logind-session.c index d9167197e0..f55dca3858 100644 --- a/src/login/logind-session.c +++ b/src/login/logind-session.c @@ -547,9 +547,11 @@ int session_start(Session *s) { return r; /* Create cgroup */ +#if 0 r = session_start_scope(s); if (r < 0) return r; +#endif log_struct(s->class == SESSION_BACKGROUND ? LOG_DEBUG : LOG_INFO, LOG_MESSAGE_ID(SD_MESSAGE_SESSION_START), |