[oe-commits] [meta-openembedded] 01/10: quagga: fix tmpfiles snippet to refer to /run instead of /var/run

git at git.openembedded.org git at git.openembedded.org
Thu Feb 20 16:22:39 UTC 2020


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit ff543375f47abc994c00e05f4f70d4a83c30a25a
Author: Callaghan, Dan <dan.callaghan at opengear.com>
AuthorDate: Tue Feb 11 16:08:33 2020 +1000

    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 at opengear.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-protocols/quagga/quagga.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-protocols/quagga/quagga.inc b/meta-networking/recipes-protocols/quagga/quagga.inc
index dfd6aa7..2673a89 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
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list