#!/bin/sh

case "${1}" in
	start)
		/etc/init.d/dhcp.sh
		;;

	stop)
		pkill udhcpc
		;;

	status)
		pidof udhcpc
		;;

	*)
		exit 1
		;;
esac
