forked from pool/systemd
Marcus Meissner
656aca6436
- Add 0001-acpi-fptd-fix-memory-leak-in-acpi_get_boot_usec.patch: fix acpi memleak. - Add 0002-fix-lingering-references-to-var-lib-backlight-random.patch: fix invalid path in documentation. - Add 0003-acpi-make-sure-we-never-free-an-uninitialized-pointe.patch: fix invalid memory free. - Add 0004-systemctl-fix-name-mangling-for-sysv-units.patch: fix name mangling for sysv units. - Add 0005-cryptsetup-fix-OOM-handling-when-parsing-mount-optio.patch: fix OOM handling. - Add 0006-journald-add-missing-error-check.patch: add missing error check. - Add 0007-bus-fix-potentially-uninitialized-memory-access.patch: fix uninitialized memory access. - Add 0008-dbus-fix-return-value-of-dispatch_rqueue.patch: fix return value. - Add 0009-modules-load-fix-error-handling.patch: fix error handling. - Add 0010-efi-never-call-qsort-on-potentially-NULL-arrays.patch: fix incorrect memory access. - Add 0011-strv-don-t-access-potentially-NULL-string-arrays.patch: fix incorrect memory access. - Add 0012-mkdir-pass-a-proper-function-pointer-to-mkdir_safe_i.patch: fix invalid pointer. - Add 0014-tmpfiles.d-include-setgid-perms-for-run-log-journal.patch: OBS-URL: https://build.opensuse.org/request/show/202117 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=452
56 lines
2.3 KiB
Diff
56 lines
2.3 KiB
Diff
From 6c8c92fef72cf6a7ef7109a424ef82dbdc4f6952 Mon Sep 17 00:00:00 2001
|
|
From: Dave Reisner <dreisner@archlinux.org>
|
|
Date: Wed, 2 Oct 2013 07:46:24 -0400
|
|
Subject: [PATCH 02/15] fix lingering references to
|
|
/var/lib/{backlight,random-seed}
|
|
|
|
This should have been part of ef5bfcf668e6029faa78534dfe.
|
|
---
|
|
man/systemd-backlight@.service.xml | 2 +-
|
|
man/systemd-random-seed.service.xml | 2 +-
|
|
units/systemd-backlight@.service.in | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/man/systemd-backlight@.service.xml b/man/systemd-backlight@.service.xml
|
|
index 2b73625..4318964 100644
|
|
--- a/man/systemd-backlight@.service.xml
|
|
+++ b/man/systemd-backlight@.service.xml
|
|
@@ -58,7 +58,7 @@
|
|
is a service that restores the display backlight
|
|
brightness at early-boot and saves it at shutdown. On
|
|
disk, the backlight brightness is stored in
|
|
- <filename>/var/lib/backlight/</filename>. Note that by
|
|
+ <filename>/var/lib/systemd/backlight/</filename>. Note that by
|
|
default, only firmware backlight devices are
|
|
saved/restored.</para>
|
|
</refsect1>
|
|
diff --git a/man/systemd-random-seed.service.xml b/man/systemd-random-seed.service.xml
|
|
index 8cd14b7..e5cd037 100644
|
|
--- a/man/systemd-random-seed.service.xml
|
|
+++ b/man/systemd-random-seed.service.xml
|
|
@@ -61,7 +61,7 @@
|
|
for details. Saving/restoring the random seed across
|
|
boots increases the amount of available entropy early
|
|
at boot. On disk the random seed is stored in
|
|
- <filename>/var/lib/random-seed</filename>.</para>
|
|
+ <filename>/var/lib/systemd/random-seed</filename>.</para>
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
diff --git a/units/systemd-backlight@.service.in b/units/systemd-backlight@.service.in
|
|
index b0e75db..5caa5d5 100644
|
|
--- a/units/systemd-backlight@.service.in
|
|
+++ b/units/systemd-backlight@.service.in
|
|
@@ -9,7 +9,7 @@
|
|
Description=Load/Save Screen Backlight Brightness of %I
|
|
Documentation=man:systemd-backlight@.service(8)
|
|
DefaultDependencies=no
|
|
-RequiresMountsFor=/var/lib/backlight
|
|
+RequiresMountsFor=/var/lib/systemd/backlight
|
|
Conflicts=shutdown.target
|
|
After=systemd-readahead-collect.service systemd-readahead-replay.service systemd-remount-fs.service
|
|
Before=sysinit.target shutdown.target
|
|
--
|
|
1.8.4
|
|
|