2013-04-23 11:39:56 +02:00
|
|
|
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(-)
|
|
|
|
|
2013-08-02 07:26:48 +02:00
|
|
|
--- systemd-206.orig/tmpfiles.d/tmp.conf
|
|
|
|
+++ systemd-206/tmpfiles.d/tmp.conf
|
2013-04-23 11:39:56 +02:00
|
|
|
@@ -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
|
2014-03-11 09:24:11 +01:00
|
|
|
x /tmp/systemd-private-%b-*
|