forked from pool/systemd
a6c42807cc
- Update to release 202: + 'systemctl list-jobs' got some polishing. '--type=' argument may now be passed more than once. 'systemctl list-sockets' has been added. + systemd gained a new unit 'systemd-static-nodes.service' that generates static device nodes earlier during boot, and can run in conjunction with udev. + systemd-nspawn now places all containers in the new /machine top-level cgroup directory in the name=systemd hierarchy. + bootchart can now store its data in the journal. + journactl can now take multiple --unit= and --user-unit= switches. + The cryptsetup logic now understands the "luks.key=" kernel command line switch. If a configured key file is missing, it will fallback to prompting the user. - Rebase some patches - Update handle-SYSTEMCTL_OPTIONS-environment-variable.patch to properly handle SYSTEMCTL_OPTIONS - Fix regression in the default for tmp auto-deletion (systemd-tmp-safe-defaults.patch, FATE#314974). - Add chromebook lid switch as a power switch to logind rule to enable suspend on lid close - Update to release 202: + 'systemctl list-jobs' got some polishing. '--type=' argument may now be passed more than once. 'systemctl list-sockets' has been added. + systemd gained a new unit 'systemd-static-nodes.service' OBS-URL: https://build.opensuse.org/request/show/172582 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=365
27 lines
811 B
Diff
27 lines
811 B
Diff
From: Reinhard Max <max@suse.de>
|
|
Date: Fri, 19 Apr 2013 16:12:28 +0200
|
|
Subject: systemd tmp safe defaults
|
|
|
|
Fix regression in the default for tmp auto-deletion (FATE#314974).
|
|
SUSE policy is to not clean /tmp by default.
|
|
---
|
|
tmpfiles.d/tmp.conf | 5 +++--
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tmpfiles.d/tmp.conf b/tmpfiles.d/tmp.conf
|
|
index 3b534a1..99eb6f2 100644
|
|
--- a/tmpfiles.d/tmp.conf
|
|
+++ b/tmpfiles.d/tmp.conf
|
|
@@ -8,8 +8,9 @@
|
|
# See tmpfiles.d(5) for details
|
|
|
|
# Clear tmp directories separately, to make them easier to override
|
|
-d /tmp 1777 root root 10d
|
|
-d /var/tmp 1777 root root 30d
|
|
+# SUSE policy: we don't clean those directories
|
|
+d /tmp 1777 root root -
|
|
+d /var/tmp 1777 root root -
|
|
|
|
# Exclude namespace mountpoints created with PrivateTmp=yes
|
|
x /tmp/systemd-private-*
|