aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-protocols
diff options
context:
space:
mode:
authorCallaghan, Dan <dan.callaghan@opengear.com>2020-02-11 16:08:33 +1000
committerKhem Raj <raj.khem@gmail.com>2020-02-19 14:44:47 -0800
commitff543375f47abc994c00e05f4f70d4a83c30a25a (patch)
tree6e3f241be09884805065cf0b934607e71e839606 /meta-networking/recipes-protocols
parent876f4ce7639def476664834acafbf87cc227fb05 (diff)
downloadmeta-openembedded-ff543375f47abc994c00e05f4f70d4a83c30a25a.tar.gz
quagga: fix tmpfiles snippet to refer to /run instead of /var/run
This fixes a complaint from systemd on boot: systemd-tmpfiles[393]: [/etc/tmpfiles.d/quagga.conf:1] Line references path below legacy directory /var/run/, updating /var/run/quagga → /run/quagga; please update the tmpfiles.d/ drop-in file accordingly. Signed-off-by: Dan Callaghan <dan.callaghan@opengear.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-protocols')
-rw-r--r--meta-networking/recipes-protocols/quagga/quagga.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-protocols/quagga/quagga.inc b/meta-networking/recipes-protocols/quagga/quagga.inc
index dfd6aa7eb1..2673a89769 100644
--- a/meta-networking/recipes-protocols/quagga/quagga.inc
+++ b/meta-networking/recipes-protocols/quagga/quagga.inc
@@ -117,7 +117,7 @@ do_install () {
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
install -d ${D}${sysconfdir}/tmpfiles.d
- echo "d /var/run/quagga 0755 quagga quagga -" \
+ echo "d /run/quagga 0755 quagga quagga -" \
> ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf
fi