forked from pool/systemd
c21a4ca2f0
- Reinstate and improve (remove huge indents from) tty-ask-password-agent-on-console.patch, 0014-journald-with-journaling-FS.patch, rootsymlink_generator. OBS-URL: https://build.opensuse.org/request/show/286310 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=847
27 lines
852 B
Diff
27 lines
852 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(-)
|
|
|
|
Index: systemd/tmpfiles.d/tmp.conf
|
|
===================================================================
|
|
--- systemd.orig/tmpfiles.d/tmp.conf
|
|
+++ systemd/tmpfiles.d/tmp.conf
|
|
@@ -8,8 +8,9 @@
|
|
# See tmpfiles.d(5) for details
|
|
|
|
# Clear tmp directories separately, to make them easier to override
|
|
-v /tmp 1777 root root 10d
|
|
-v /var/tmp 1777 root root 30d
|
|
+# SUSE policy: we don't clean those directories
|
|
+v /tmp 1777 root root -
|
|
+v /var/tmp 1777 root root -
|
|
|
|
# Exclude namespace mountpoints created with PrivateTmp=yes
|
|
x /tmp/systemd-private-%b-*
|