diff options
Diffstat (limited to 'recipes/avahi/files/00avahi-autoipd')
-rwxr-xr-x | recipes/avahi/files/00avahi-autoipd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes/avahi/files/00avahi-autoipd b/recipes/avahi/files/00avahi-autoipd new file mode 100755 index 0000000000..a0ab814603 --- /dev/null +++ b/recipes/avahi/files/00avahi-autoipd @@ -0,0 +1,10 @@ +#!/bin/sh + +[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 + +case "$1" in + + deconfig|renew|bound) + /usr/sbin/avahi-autoipd -k $interface 2> /dev/null + ;; +esac |