0e288fc9c5
- Add upstream patch 0001-machine-don-t-return-uninitialized-variable.patch - Port and add upstream patch 0002-vconsole-setup-run-setfont-before-loadkeys.patch - Rename 0001-udev-net_setup_link-add-a-bit-more-logging.patch to 1048-udev-net_setup_link-add-a-bit-more-logging.patch - Port and add upstream patches 0001-udev-net_setup_link-add-a-bit-more-logging.patch 0003-namespace-make-sure-tmp-var-tmp-and-dev-are-writable.patch 0002-namespace-fix-uninitialized-memory-access.patch - Add upstream patches 0001-architecture-Add-tilegx.patch 0002-architecture-Add-cris.patch 0003-arch-add-crisv32-to-uname-check.patch 0004-architecture-remove-cris-from-uname-list.patch - Add upstream patches 0006-hwdb-update.patch 0007-hwdb-Update-database-of-Bluetooth-company-identifier.patch - Add upstream patches 0001-parse_uid-return-ENXIO-for-1-uids.patch 0002-util-when-unescaping-strings-don-t-allow-smuggling-i.patch 0003-localed-consider-an-unset-model-as-a-wildcard.patch 0004-sd-bus-when-an-event-loop-terminates-explicitly-clos.patch OBS-URL: https://build.opensuse.org/request/show/239780 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=191
27 lines
962 B
Diff
27 lines
962 B
Diff
Based on 6fc27667950fe153033f0f49cb5b57e8954c3e54 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Mon, 30 Jun 2014 19:06:18 +0200
|
|
Subject: [PATCH] tmpfiles: don't do automatic cleanup in $XDG_RUNTIME_DIR
|
|
|
|
Now that logind will clean up all IPC resources of a user we should
|
|
really consider $XDG_RUNTIME_DIR as just another kind of IPC with the
|
|
same life-cycle logic as the other IPC resources. This should be safe
|
|
now to do since every user gets his own $XDG_RUNTIME_DIR tmpfs instance
|
|
with a fixed size limit, so that flooding of it will more effectively be
|
|
averted.
|
|
---
|
|
tmpfiles.d/systemd.conf | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- tmpfiles.d/systemd.conf
|
|
+++ tmpfiles.d/systemd.conf 2014-07-01 12:31:01.858735866 +0000
|
|
@@ -7,7 +7,7 @@
|
|
|
|
# See tmpfiles.d(5) for details
|
|
|
|
-d /run/user 0755 root root ~10d
|
|
+d /run/user 0755 root root -
|
|
F! /run/utmp 0664 root utmp -
|
|
|
|
f /var/log/wtmp 0664 root utmp -
|