#!/bin/sh /etc/rc.common
# Copyright (C) 2010 Leonid Evdokimov

START=60

start() {
	/usr/sbin/udhcpd -S /etc/udhcpd.conf
}

stop() {
	killall udhcpd
}
