aboutsummaryrefslogtreecommitdiff
path: root/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample
diff options
context:
space:
mode:
Diffstat (limited to 'net/isc-dhcp3-server/files/isc-dhcpd.sh.sample')
-rw-r--r--net/isc-dhcp3-server/files/isc-dhcpd.sh.sample33
1 files changed, 0 insertions, 33 deletions
diff --git a/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample b/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample
deleted file mode 100644
index bd9f10dbc3fd..000000000000
--- a/net/isc-dhcp3-server/files/isc-dhcpd.sh.sample
+++ /dev/null
@@ -1,33 +0,0 @@
-#! /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