mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
systemd: Only add myhostname to nsswitch.conf if in PACKAGECONFIG
Currently myhostname is always added to nsswitch.conf even if it is not included in PACKAGECONFIG. This is based on changes made in OE-core rev: ba3a78c08cb0ce08afde049610d3172b9e3b0695 Cc: Chen Qi <Qi.Chen@windriver.com> (From OE-Core rev: 17e20ce90b5b3abb5a597d4a5b470c8eaa3fd296) Signed-off-by: Jermain Horsman <jermain.horsman@nedap.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
committed by
Steve Sakoman
parent
e17cf6a549
commit
b8a07a0ed2
@@ -776,15 +776,19 @@ ALTERNATIVE_LINK_NAME[runlevel] = "${base_sbindir}/runlevel"
|
||||
ALTERNATIVE_PRIORITY[runlevel] ?= "300"
|
||||
|
||||
pkg_postinst:${PN}:libc-glibc () {
|
||||
sed -e '/^hosts:/s/\s*\<myhostname\>//' \
|
||||
-e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \
|
||||
-i $D${sysconfdir}/nsswitch.conf
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'myhostname', 'true', 'false', d)}; then
|
||||
sed -e '/^hosts:/s/\s*\<myhostname\>//' \
|
||||
-e 's/\(^hosts:.*\)\(\<files\>\)\(.*\)\(\<dns\>\)\(.*\)/\1\2 myhostname \3\4\5/' \
|
||||
-i $D${sysconfdir}/nsswitch.conf
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_prerm:${PN}:libc-glibc () {
|
||||
sed -e '/^hosts:/s/\s*\<myhostname\>//' \
|
||||
-e '/^hosts:/s/\s*myhostname//' \
|
||||
-i $D${sysconfdir}/nsswitch.conf
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'myhostname', 'true', 'false', d)}; then
|
||||
sed -e '/^hosts:/s/\s*\<myhostname\>//' \
|
||||
-e '/^hosts:/s/\s*myhostname//' \
|
||||
-i $D${sysconfdir}/nsswitch.conf
|
||||
fi
|
||||
}
|
||||
|
||||
PACKAGE_WRITE_DEPS += "qemu-native"
|
||||
|
||||
Reference in New Issue
Block a user