1#!/bin/sh 2 3[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 4 5case "$1" in 6 7 deconfig|renew|bound) 8 /usr/sbin/avahi-autoipd -k $interface 2> /dev/null 9 ;; 10esac 11