#!/bin/sh

[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1

case "$1" in
        bound)
		/usr/local/avahi/etc/init.d/avahi-daemon restart
                ;;
esac

exit 0
