Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | [ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 | ||||
4 | |||||
5 | case "$1" in | ||||
6 | |||||
7 | deconfig|renew|bound) | ||||
8 | /usr/sbin/avahi-autoipd -k $interface 2> /dev/null | ||||
9 | ;; | ||||
10 | esac |