openbsd-ports/net/avahi/pkg/MESSAGE-main
2010-03-20 17:02:13 +00:00

16 lines
553 B
Plaintext

For proper function, multicast(4) needs to be enabled. To do so, add the
following line to /etc/rc.conf.local:
multicast_host=YES
To start avahi automatically, add the following to /etc/rc.local:
(after dbus-daemon but before Zeroconf-aware applications startup)
if [ -x ${PREFIX}/sbin/avahi-daemon ]; then
echo -n ' avahi-daemon'; ${PREFIX}/sbin/avahi-daemon -D
fi
Optionally to start the unicast DNS server configuration daemon, add
if [ -x ${PREFIX}/sbin/avahi-dnsconfd ]; then
echo -n ' avahi-dnsconfd'; ${PREFIX}/sbin/avahi-dnsconfd -D
fi