f7b39a13eb
git-svn-id: svn://svn.openwrt.org/openwrt/packages@20814 3c298f89-4303-0410-b956-a3cf2f4a3e73
43 lines
762 B
Bash
43 lines
762 B
Bash
#!/bin/sh /etc/rc.common
|
|
START=60
|
|
|
|
lease_file=/tmp/dhcpd.leases
|
|
config_file=/etc/dhcpd.conf
|
|
pid_file=/var/run/dhcpd.pid
|
|
|
|
start() {
|
|
if [ -e $pid_file ] ; then
|
|
echo " dhcpd already running with PID `cat $pid_file`"
|
|
return 1
|
|
fi
|
|
|
|
echo Starting isc-dhcpd
|
|
|
|
if [ ! -e $lease_file ]; then
|
|
echo " Creating $lease_file"
|
|
touch $lease_file
|
|
fi
|
|
|
|
/usr/sbin/dhcpd -q -cf $config_file -lf $lease_file
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo " isc-dhcpd failed to start"
|
|
fi
|
|
}
|
|
|
|
stop() {
|
|
echo "Stopping isc-dhcpd"
|
|
if [ -e $pid_file ]; then
|
|
kill -KILL `cat $pid_file`
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo " PID " `cat $pid_file` not found
|
|
echo " Is the DHCP server running?"
|
|
fi
|
|
|
|
rm -f $pid_file
|
|
else
|
|
echo " $pid_file not found"
|
|
fi
|
|
}
|