mirror of the now-defunct rocklinux.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
if any_installed "lib/libnss_mdns.so.2" ; then
|
|
echo "mdnsresponder: adding 'mdns' to host: line in /etc/nsswitch.conf .."
|
|
sed -i -e '/mdns/! s/^\(hosts:.*\)dns\(.*\)/\1mdns dns\2/' /etc/nsswitch.conf
|
|
fi
|
|
|
|
if any_removed "lib/libnss_mdns.so.2" ; then
|
|
echo "mdnsresponder: removing 'mdns' from host: line in /etc/nsswitch.conf .."
|
|
sed -i -e 's/^\(hosts:.*\)mdns \(.*\)/\1\2/' /etc/nsswitch.conf
|
|
fi
|