diff options
author | Callaghan, Dan <dan.callaghan@opengear.com> | 2020-02-11 16:08:33 +1000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-02-19 14:44:47 -0800 |
commit | ff543375f47abc994c00e05f4f70d4a83c30a25a (patch) | |
tree | 6e3f241be09884805065cf0b934607e71e839606 | |
parent | 876f4ce7639def476664834acafbf87cc227fb05 (diff) | |
download | meta-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>
-rw-r--r-- | meta-networking/recipes-protocols/quagga/quagga.inc | 2 |
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 () { | |||
117 | 117 | ||
118 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 118 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
119 | install -d ${D}${sysconfdir}/tmpfiles.d | 119 | install -d ${D}${sysconfdir}/tmpfiles.d |
120 | echo "d /var/run/quagga 0755 quagga quagga -" \ | 120 | echo "d /run/quagga 0755 quagga quagga -" \ |
121 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf | 121 | > ${D}${sysconfdir}/tmpfiles.d/${BPN}.conf |
122 | fi | 122 | fi |
123 | 123 | ||