Files
poky/meta/packages/avahi/files/00avahi-autoipd
Marcin Juszkiewicz 4c7fc91940 avahi: create/remove 'avahi-autoipd' user (from OE)
Patch from Cyril Humbert <cyril.humbert@martec.fr>

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5483 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-10-13 13:02:35 +00:00

180 B

#!/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