Add init script from exobyte #924
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5449 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9cf5c34593
commit
c1e473830d
@ -1,12 +1,40 @@
|
|||||||
#!/bin/sh /etc/rc.common
|
#!/bin/sh /etc/rc.common
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
|
||||||
|
lease_file=/tmp/dhcpd.leases
|
||||||
|
config_file=/etc/dhcpd.conf
|
||||||
|
pid_file=/var/run/dhcpd.pid
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
if [ -f /etc/bind/named.conf ]; then
|
echo Starting isc-dhcpd
|
||||||
named -c /etc/bind/named.conf
|
|
||||||
fi
|
if [ ! -e $lease_file ]; then
|
||||||
|
echo " Creating $lease_file"
|
||||||
|
touch $lease_file
|
||||||
|
fi
|
||||||
|
|
||||||
|
/usr/sbin/dhcpd -cf $config_file -lf $lease_file
|
||||||
|
|
||||||
|
if [ $$ -eq 0 ]
|
||||||
|
then
|
||||||
|
echo " isc-dhcpd failed to start"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
killall named
|
echo "Stopping isc-dhcpd"
|
||||||
|
if [ -e $pid_file ]
|
||||||
|
then
|
||||||
|
kill `cat $pid_file`
|
||||||
|
|
||||||
|
if [ $$ -eq 0 ]
|
||||||
|
then
|
||||||
|
echo " PID " `cat $pid_file` not found
|
||||||
|
echo " Is the DHCP server running?"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm $pid_file
|
||||||
|
|
||||||
|
else
|
||||||
|
echo " $pid_file not found"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user