31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From b089ddffd2eef138a80849f6cdb35c330747ad27 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Thu, 29 Dec 2016 10:38:52 +0100
|
|
Subject: [PATCH] units: fix condition for
|
|
systemd-journal-catalog-update.service (#4990)
|
|
|
|
The service is supposed to regenerate the catalog index whenever /usr is
|
|
updated, but /var is not. Hence the ConditionNeedsUpdate= line should
|
|
actually reference /var, as that's where the index file is located.
|
|
(cherry picked from commit 73c729d76871a64840a4d89fc61a5a64cc96e596)
|
|
---
|
|
units/systemd-journal-catalog-update.service.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/units/systemd-journal-catalog-update.service.in b/units/systemd-journal-catalog-update.service.in
|
|
index 6370dd478f..276f052b1a 100644
|
|
--- a/units/systemd-journal-catalog-update.service.in
|
|
+++ b/units/systemd-journal-catalog-update.service.in
|
|
@@ -12,7 +12,7 @@ DefaultDependencies=no
|
|
Conflicts=shutdown.target
|
|
After=local-fs.target
|
|
Before=sysinit.target shutdown.target systemd-update-done.service
|
|
-ConditionNeedsUpdate=/etc
|
|
+ConditionNeedsUpdate=/var
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
--
|
|
2.9.3
|
|
|