Files
sablink-distro/net-misc/dhcdbd/files/dhcdbd.init
T
2007-05-03 09:05:42 +00:00

23 lines
458 B
Plaintext

#!/sbin/runscript
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net dbus
}
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --exec /sbin/dhcdbd \
--pidfile /var/run/dhcdbd.pid \
-- ${DHCDBD_ARGS}
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --exec /sbin/dhcdbd \
--pidfile /var/run/dhcdbd.pid
eend $?
}