freebsd-ports/net/isc-dhcp40-server/files/isc-dhcpd.sh.sample
Peter Pentchev dbf330cfa8 Update to 3.0b2pl16, assign maintainership to Cyrille Lefevre.
PR:		24911
Submitted by:	Cyrille Lefevre <clefevre@citeweb.net> - new maintainer
2001-02-17 14:17:30 +00:00

33 lines
452 B
Bash

#! /bin/sh
# $FreeBSD$
OPTIONS=""
IFACES="SET_THIS"
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
echo "$0: Cannot determine the PREFIX" >&2
exit 1
fi
case "$1" in
start)
${PREFIX}/sbin/dhcpd $OPTIONS $IFACES
;;
stop)
killall dhcpd
;;
restart)
$0 stop
$0 start
;;
status)
ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)"
;;
*)
echo "usage: ${0##*/} {start|stop|restart|status}" >&2
;;
esac
exit 0