diff options
author | Timothy Redaelli <drizzt@gentoo.org> | 2007-04-23 12:44:25 +0000 |
---|---|---|
committer | Timothy Redaelli <drizzt@gentoo.org> | 2007-04-23 12:44:25 +0000 |
commit | ea48e2f99b605f595e4dfa0fa358252475394ec3 (patch) | |
tree | 317fb8d48bf8e11e45c1b82488c17ea932f37eed /sys-freebsd/freebsd-libexec/files/bootpd.initd | |
parent | In main tree (diff) | |
download | drizzt-ea48e2f99b605f595e4dfa0fa358252475394ec3.tar.gz drizzt-ea48e2f99b605f595e4dfa0fa358252475394ec3.tar.bz2 drizzt-ea48e2f99b605f595e4dfa0fa358252475394ec3.zip |
Add FreeBSD 7.0_pre200704 ebuilds
svn path=/; revision=116
Diffstat (limited to 'sys-freebsd/freebsd-libexec/files/bootpd.initd')
-rw-r--r-- | sys-freebsd/freebsd-libexec/files/bootpd.initd | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-freebsd/freebsd-libexec/files/bootpd.initd b/sys-freebsd/freebsd-libexec/files/bootpd.initd new file mode 100644 index 0000000..dc35923 --- /dev/null +++ b/sys-freebsd/freebsd-libexec/files/bootpd.initd @@ -0,0 +1,28 @@ +#!/sbin/runscript +# Copyright 2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/freebsd-libexec/files/bootpd.initd,v 1.2 2007/04/06 14:59:47 uberlord Exp $ + +depend() { + need net +} + +start() { + local bootptab=${BOOTPTAB_FILE:-/etc/bootptab} + + if ! [ -f "${bootptab}" ]; then + eerror "Unable to find the bootptab file: ${bootptab}" + eend 1 + return 1 + fi + + ebegin "Starting BOOTP server" + start-stop-daemon --start --exec /usr/libexec/bootpd -- ${BOOTPD_OPTS} ${bootptab} + eend $? +} + +stop() { + ebegin "Stopping BOOTP server" + start-stop-daemon --stop --exec /usr/libexec/bootpd + eend $? +} |