blob: e6d8c6af7de1d0277511a26bd1a9d9e6e4c6c93c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# /space/gentoo/cvsroot/gentoo-x86/net-misc/bind/files/named.rc6,v 1.4 2002/06/01 16:31:07 nitro Exp
depend() {
need net
}
start() {
ebegin "Starting innd"
start-stop-daemon --start --quiet --chuid news:news --exec /usr/lib/news/bin/innd
eend $?
}
stop() {
ebegin "Stopping innd"
start-stop-daemon --stop --quiet --pidfile /var/run/innd.pid
eend $?
}
|