aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols/quagga/files/ripd.service
diff options
context:
space:
mode:
authorTrevor Gamblin <trevor.gamblin@windriver.com>2019-10-17 08:53:51 -0400
committerKhem Raj <raj.khem@gmail.com>2019-10-17 08:33:53 -0700
commitdb9dbfdc7806a0f4c8f46b63c55bb65eae6258b9 (patch)
tree49c28109a56f0cde3c2dc18e8fc13781b818b32a /meta-networking/recipes-protocols/quagga/files/ripd.service
parent99303c190e3d69650b278c65d94b63ffccfa41bb (diff)
downloadmeta-openembedded-contrib-db9dbfdc7806a0f4c8f46b63c55bb65eae6258b9.tar.gz
quagga: fix PIDFile path for service files
Multiple quagga service files are causing the following type of message to appear during boot: /lib/systemd/system/zebra.service:10: PIDFile= references a path below legacy directory /var/run/, updating /var/run/quagga/zebra.pid → /run/quagga/zebra.pid; please update the unit file accordingly. Update the service files included as part of the recipe to use /run instead of /var/run as the PIDFile path. Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols/quagga/files/ripd.service')
-rw-r--r--meta-networking/recipes-protocols/quagga/files/ripd.service4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-protocols/quagga/files/ripd.service b/meta-networking/recipes-protocols/quagga/files/ripd.service
index 1d20389e8b..7af65ca8a3 100644
--- a/meta-networking/recipes-protocols/quagga/files/ripd.service
+++ b/meta-networking/recipes-protocols/quagga/files/ripd.service
@@ -7,9 +7,9 @@ ConditionPathExists=@SYSCONFDIR@/quagga/ripd.conf
[Service]
Type=forking
EnvironmentFile=-@SYSCONFDIR@/default/quagga
-PIDFile=@localstatedir@/run/quagga/ripd.pid
+PIDFile=/run/quagga/ripd.pid
ExecStart=@SBINDIR@/ripd -d $ripd_options -f @SYSCONFDIR@/quagga/ripd.conf
-ExecStopPost=@base_bindir@/rm -rf @localstatedir@/run/quagga/ripd.pid
+ExecStopPost=@base_bindir@/rm -rf /run/quagga/ripd.pid
Restart=on-abort
[Install]