summaryrefslogtreecommitdiffstats
path: root/abs/core/nss-mdns/nss-mdns.install
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-04-23 21:03:59 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-04-23 21:03:59 (GMT)
commit9cd55b71136e4b2b7b296549e39b23d02adc1817 (patch)
treeac90c3dda7505243099ba7c3e4a4c5227aa9d6bb /abs/core/nss-mdns/nss-mdns.install
parent80c8eda6d28f0b38d9f0c078844f181166bc7a3b (diff)
downloadlinhes_pkgbuild-9cd55b71136e4b2b7b296549e39b23d02adc1817.zip
linhes_pkgbuild-9cd55b71136e4b2b7b296549e39b23d02adc1817.tar.gz
linhes_pkgbuild-9cd55b71136e4b2b7b296549e39b23d02adc1817.tar.bz2
nss-mdns: first appearance. Used for resolving hostnames via mdns
Diffstat (limited to 'abs/core/nss-mdns/nss-mdns.install')
-rw-r--r--abs/core/nss-mdns/nss-mdns.install20
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/core/nss-mdns/nss-mdns.install b/abs/core/nss-mdns/nss-mdns.install
new file mode 100644
index 0000000..85e4d26
--- /dev/null
+++ b/abs/core/nss-mdns/nss-mdns.install
@@ -0,0 +1,20 @@
+post_install() {
+ cat << 'EOM'
+==> To enable IPv4 multicast DNS lookups, append 'mdns4' to the hosts line
+ in /etc/nsswitch.conf. Use 'mdns6' for IPv6 or 'mdns' for both.
+EOM
+}
+
+post_upgrade() {
+ if [ "$2" == "0.7-1" ]; then
+ echo -n "disabling mdns lookups in /etc/nsswitch.conf... "
+ sed -i -e '/^hosts: / s/ mdns\([46]\)\?\>//g' etc/nsswitch.conf && echo "done."
+ fi
+ cat << 'EOM'
+==> Please note that due to security reasons from version 0.9 on the
+ minimal mDNS stack included in nss-mdns (dubbed "legacy") is no
+ longer built - nss-mdns will not work unless Avahi is running.
+EOM
+
+ post_install
+}