blob: e24b097c17670c116d83f3d84d5c9482136b3c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/pmacct/files/pmacctd-init.d,v 1.3 2007/03/28 21:17:57 cedk Exp $
depend() {
need net
}
chekconfig() {
if [ ! -e /etc/pmacctd.conf ] ; then
eerror "You need an /etc/pmacctd.conf file to run pmacctd"
return 1
fi
}
start() {
chekconfig || return 1
ebegin "Starting pmacctd"
start-stop-daemon --start --exec /usr/sbin/pmacctd \
-- -D -f /etc/pmacctd.conf ${OPTS}
eend $?
}
stop() {
ebegin "Stopping pmacctd"
start-stop-daemon --stop --exec /usr/sbin/pmacctd
eend $?
}
|