blob: 3cc86c5e65a365897e781ed172c49ccb3720db22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#! /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
|