diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2020-10-20 13:40:38 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-10-19 23:49:22 -0700 |
commit | 032e6879b51124b6e8d773d58f7fb959aa603ef8 (patch) | |
tree | 9b9a3af94e10da30b831d3ca5735f4f6ea98937d /meta-networking/recipes-daemons | |
parent | 13eacba213b2493011aac7c6b4e7ce948d3a8ea3 (diff) | |
download | meta-openembedded-032e6879b51124b6e8d773d58f7fb959aa603ef8.tar.gz |
openhpi: use /run instead of /var/run in systemd service file
/var/run has been deprecated by systemd, so use /run instead,
as suggested by systemd.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons')
-rw-r--r-- | meta-networking/recipes-daemons/openhpi/files/openhpid.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/openhpi/files/openhpid.service b/meta-networking/recipes-daemons/openhpi/files/openhpid.service index cd4168f8e..816e44f82 100644 --- a/meta-networking/recipes-daemons/openhpi/files/openhpid.service +++ b/meta-networking/recipes-daemons/openhpi/files/openhpid.service | |||
@@ -4,7 +4,7 @@ After=syslog.target | |||
4 | 4 | ||
5 | [Service] | 5 | [Service] |
6 | Type=forking | 6 | Type=forking |
7 | PIDFile=/var/run/openhpid.pid | 7 | PIDFile=/run/openhpid.pid |
8 | ExecStart=@SBINDIR@/openhpid -c @SYSCONFDIR@/openhpi/openhpi.conf | 8 | ExecStart=@SBINDIR@/openhpid -c @SYSCONFDIR@/openhpi/openhpi.conf |
9 | 9 | ||
10 | [Install] | 10 | [Install] |