File avahi-daemon-ifup-suse.patch of Package avahi
--- avahi-daemon.if-up 2013-02-06 19:47:54.539254843 +0100
+++ avahi-daemon.if-up 2013-02-06 19:48:28.719254757 +0100
@@ -10,3 +10,16 @@
if [ -x /usr/lib/avahi/avahi-daemon-check-dns.sh ] ; then
exec /usr/lib/avahi/avahi-daemon-check-dns.sh
fi
+
+if test -f /etc/sysconfig/avahi ; then
+ . /etc/sysconfig/avahi
+fi
+
+if test "$AVAHI_AUTOIPD_ENABLE" = "yes" ; then
+ if test "$AVAHI_AUTOIPD_FORCE_BIND" = "yes" ; then
+ FORCE=" --force-bind"
+ else
+ FORCE=""
+ fi
+ @sbindir@/avahi-autoipd -wD$FORCE $2 2> /dev/null || exit 0
+fi