38 lines
624 B
Plaintext
38 lines
624 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
START=60
|
||
|
|
||
|
lease_file=/tmp/dhcpd.leases
|
||
|
config_file=/etc/dhcpd.conf
|
||
|
pid_file=/var/run/dhcpd.pid
|
||
|
|
||
|
start() {
|
||
|
echo Starting isc-dhcpd
|
||
|
|
||
|
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() {
|
||
|
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
|
||
|
}
|