diff --git a/recipes-core/systemd-conf/files/01-remote-logging.conf b/recipes-core/systemd-conf/files/forward-to-syslog.conf similarity index 100% rename from recipes-core/systemd-conf/files/01-remote-logging.conf rename to recipes-core/systemd-conf/files/forward-to-syslog.conf diff --git a/recipes-core/systemd-conf/systemd-conf_%.bbappend b/recipes-core/systemd-conf/systemd-conf_%.bbappend index aad6a2c57b37766348f87033f19a979ac47682a1..95797bc3ec9bcef367a3043cc71924999a152a36 100644 --- a/recipes-core/systemd-conf/systemd-conf_%.bbappend +++ b/recipes-core/systemd-conf/systemd-conf_%.bbappend @@ -2,12 +2,12 @@ FILESEXTRAPATHS:prepend := "${THISDIR}/files:" SRC_URI += " \ file://eth.network \ - file://01-remote-logging.conf \ + file://forward-to-syslog.conf \ " FILES:${PN} += " \ ${sysconfdir}/systemd/network/eth.network \ - ${sysconfdir}/systemd/journald.conf.d/01-remote-logging.conf \ + ${sysconfdir}/systemd/journald.conf.d/forward-to-syslog.conf \ " do_install:append() { @@ -15,5 +15,5 @@ do_install:append() { install -m 0644 ${WORKDIR}/eth.network ${D}${sysconfdir}/systemd/network install -d ${D}${sysconfdir}/systemd/journald.conf.d - install -m 0644 ${WORKDIR}/01-remote-logging.conf ${D}${sysconfdir}/systemd/journald.conf.d + install -m 0644 ${WORKDIR}/forward-to-syslog.conf ${D}${sysconfdir}/systemd/journald.conf.d }