mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-05 02:50:46 +00:00
rsyslog: fix incorrect install -d usage in do_install
The rsyslog recipe incorrectly passes the permission mode as a positional argument to install -d. In this form, the value is treated as a directory name rather than as a mode, which will create an additional directory and may result in unexpected behavior during installation. Use the -m option to ensure the directory is created with the intended permissions. Signed-off-by: Mikhail Anikin <mikhail.anikin@solid-run.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -149,11 +149,11 @@ do_install:append() {
|
||||
sed -i -e "s#@BINDIR@#${bindir}#g" ${D}${sysconfdir}/logrotate.d/logrotate.rsyslog
|
||||
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'imjournal', 'true', 'false', d)}; then
|
||||
install -d 0755 ${D}${sysconfdir}/rsyslog.d
|
||||
install -d -m 0755 ${D}${sysconfdir}/rsyslog.d
|
||||
echo '$ModLoad imjournal' >> ${D}${sysconfdir}/rsyslog.d/imjournal.conf
|
||||
fi
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'mmjsonparse', 'true', 'false', d)}; then
|
||||
install -d 0755 ${D}${sysconfdir}/rsyslog.d
|
||||
install -d -m 0755 ${D}${sysconfdir}/rsyslog.d
|
||||
echo '$ModLoad mmjsonparse' >> ${D}${sysconfdir}/rsyslog.d/mmjsonparse.conf
|
||||
fi
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
|
||||
Reference in New Issue
Block a user