1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/net/isc-dhcp3/files/isc-dhcpd.sh.sample
FUJISHIMA Satsuki 922183a077 update to 3.0b2pl18.
PR:		25501
Submitted by:	maintainer
2001-03-08 20:06:36 +00:00

34 lines
479 B
Bash

#! /bin/sh
# $FreeBSD$
OPTIONS=""
IFACES=""
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 > /dev/null 2>&1
echo -n ' dhcpd'
;;
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