File avahi-autoipd.if-down of Package avahi
12
1
#!/bin/bash
2
3
[ "$2" != "lo" ] || exit 0
4
5
if test -f /etc/sysconfig/avahi ; then
6
. /etc/sysconfig/avahi
7
fi
8
9
if test "$AVAHI_AUTOIPD_ENABLE" = "yes" ; then
10
@sbindir@/avahi-autoipd -k $2 2> /dev/null || exit 0
11
fi
12