diff options
Diffstat (limited to 'net-misc/dhcp/files/dhcp.rc7')
-rw-r--r-- | net-misc/dhcp/files/dhcp.rc7 | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/net-misc/dhcp/files/dhcp.rc7 b/net-misc/dhcp/files/dhcp.rc7 index 9acb94d6d235..e92348a45b11 100644 --- a/net-misc/dhcp/files/dhcp.rc7 +++ b/net-misc/dhcp/files/dhcp.rc7 @@ -1,32 +1,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.rc7,v 1.4 2003/07/25 20:27:08 lanius Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcp/files/dhcp.rc7,v 1.5 2004/03/06 03:30:53 vapier Exp $ #configuration is done in /etc/conf.d/dhcp depend() { - need net + need net use named } checkconfig() { - if [ ! -e /etc/dhcp/dhcpd.conf ] ; then - eerror "You need an /etc/dhcp/dhcpd.conf file to run dhcpd" - eerror "There is a sample conf file in /usr/share/doc/dhcp" - return 1 - fi + if [ ! -e /etc/dhcp/dhcpd.conf ] ; then + eerror "You need an /etc/dhcp/dhcpd.conf file to run dhcpd" + eerror "There is a sample conf file in /usr/share/doc/dhcp" + return 1 + fi } start() { - checkconfig || return 1 - ebegin "Starting dhcpd" - start-stop-daemon --start --quiet --exec /usr/sbin/dhcpd -- ${DHCPD_OPTS} ${IFACE} - eend $? + checkconfig || return 1 + ebegin "Starting dhcpd" + start-stop-daemon --start --quiet --exec /usr/sbin/dhcpd -- ${DHCPD_OPTS} ${IFACE} + eend $? } stop() { - ebegin "Stopping dhcpd" - start-stop-daemon --stop --quiet --exec /usr/sbin/dhcpd - eend $? + ebegin "Stopping dhcpd" + start-stop-daemon --stop --quiet --exec /usr/sbin/dhcpd + eend $? } |