You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
7 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# If we have an unicast .local domain, we immediately disable avahi to avoid
|
||
|
# conflicts with the multicast IP4LL .local domain
|
||
|
|
||
|
if [ -x /usr/lib/avahi/avahi-daemon-check-dns.sh ]; then
|
||
|
exec /usr/lib/avahi/avahi-daemon-check-dns.sh
|
||
|
fi
|