summaryrefslogtreecommitdiff
blob: d152d857e9fc085fc546f87f3a4144f67e51b44c (plain)
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
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcp/files/dhcp.rc6,v 1.4 2003/07/23 17:18:30 max Exp $

depend() {
	need net
	use logger
}

checkconfig() {
	if [ ! -f "${CHROOT}/etc/dhcp/dhcpd.conf" ] ; then
		eerror "No ${CHROOT}/etc/dhcp/dhcpd.conf file exists!"
		return 1
	fi
}

start() {
    checkconfig || return 1

    ebegin "Starting ${CHROOT:+chrooted }dhcpd"
    start-stop-daemon --start --quiet --exec /usr/sbin/dhcpd \
    	-- -user dhcp -group dhcp ${DHCPD_OPTS} \
	${CHROOT:+-chroot ${CHROOT}} ${IFACE}
    eend $?
}

stop() {
    ebegin "Stopping dhcpd"
    start-stop-daemon --stop --quiet --exec /usr/sbin/dhcpd
    eend $?
}