dd130527a3
git-svn-id: http://svn.sabayonlinux.org/overlay@1208 d7aec97c-591d-0410-af39-a8856400b30a
23 lines
458 B
Plaintext
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 $?
|
|
}
|