forked from pool/systemd
Frederic Crozat
37527bb454
- version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. - version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. (forwarded request 184035 from elvigia) OBS-URL: https://build.opensuse.org/request/show/184036 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=416
25 lines
751 B
Diff
25 lines
751 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(-)
|
|
|
|
--- systemd-206.orig/tmpfiles.d/tmp.conf
|
|
+++ systemd-206/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-*
|