blob: 9bf0cfe336fe95c7e36a15550b5cc42c1c303211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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 $?
}
|