summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/watchdog/watchdog
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2020-10-15 10:26:30 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-17 12:34:29 +0100
commitac1879d33bcdd1ca14a51e9b817f8d96272a502b (patch)
tree142678028cfe6e3f6c713cfba69575e441729079 /meta/recipes-extended/watchdog/watchdog
parent458b7e9369dba71cda7623f906b4b2d3caeb9caa (diff)
downloadpoky-ac1879d33bcdd1ca14a51e9b817f8d96272a502b.tar.gz
watchdog: use /run instead of /var/run in systemd service file
/var/run in deprecated by systemd, use /run instead, as suggested by systemd. (From OE-Core rev: 85c92455eb6a133ae5ce8e70d46cac4fcd55ffe4) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/watchdog/watchdog')
-rw-r--r--meta/recipes-extended/watchdog/watchdog/0001-wd_keepalive.service-use-run-instead-of-var-run.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-extended/watchdog/watchdog/0001-wd_keepalive.service-use-run-instead-of-var-run.patch b/meta/recipes-extended/watchdog/watchdog/0001-wd_keepalive.service-use-run-instead-of-var-run.patch
new file mode 100644
index 0000000000..5c5d2f4e44
--- /dev/null
+++ b/meta/recipes-extended/watchdog/watchdog/0001-wd_keepalive.service-use-run-instead-of-var-run.patch
@@ -0,0 +1,30 @@
1From b5cb6166dbfa57d1d94b19d4a098991a817f68f5 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Thu, 15 Oct 2020 10:02:17 +0800
4Subject: [PATCH] wd_keepalive.service: use /run instead of /var/run
5
6/var/run is deprecated by systemd, use /run instead.
7
8Upstream-Status: Pending
9
10Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
11---
12 debian/wd_keepalive.service | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/debian/wd_keepalive.service b/debian/wd_keepalive.service
16index 7f8b1dc..0f2a153 100644
17--- a/debian/wd_keepalive.service
18+++ b/debian/wd_keepalive.service
19@@ -7,7 +7,7 @@ Type=forking
20 EnvironmentFile=/etc/default/watchdog
21 ExecStartPre=/bin/sh -c '[ -z "${watchdog_module}" ] || [ "${watchdog_module}" = "none" ] || /sbin/modprobe $watchdog_module'
22 ExecStart=/usr/sbin/wd_keepalive $watchdog_options
23-PIDFile=/var/run/wd_keepalive.pid
24+PIDFile=/run/wd_keepalive.pid
25
26 [Install]
27 WantedBy=multi-user.target
28--
292.17.1
30