Writing to "/tmp/nsswitch.conf" leads to a race condition if two
copies of the postinst are running simultaneously. Fix this by
modifying /etc/nsswitch.conf in place using sed -i. Also make the
same change to the prerm for consistency although the race will not
occur here in practice.
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
DEPENDS = "avahi"
RDEPENDS_${PN} = "avahi-daemon"
-PR = "r3"
+PR = "r4"
SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz"
# TODO: pattern based configuration update
pkg_postinst_${PN} () {
cat $D/etc/nsswitch.conf | grep "hosts:\s*files dns$" > /dev/null && {
- cat $D/etc/nsswitch.conf | sed 's/hosts:\s*files dns/& mdns4/' > /tmp/nsswitch.conf
- mv /tmp/nsswitch.conf $D/etc/nsswitch.conf
+ sed -i 's/hosts:\s*files dns/& mdns4/' $D/etc/nsswitch.conf
}
}
pkg_prerm_${PN} () {
cat /etc/nsswitch.conf | grep "hosts:\s*files dns mdns4$" > /dev/null && {
- cat /etc/nsswitch.conf | sed 's/\(hosts:\s*files dns\) mdns4*/\1/' > /tmp/nsswitch.conf
- mv /tmp/nsswitch.conf /etc/nsswitch.conf
+ sed -i 's/\(hosts:\s*files dns\) mdns4*/\1/' /etc/nsswitch.conf
}
}