blob: ce1e6bded000fc3dd70a4488b1f1df8b7e7c5196 (
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
31
32
33
34
35
36
37
38
39
40
41
|
#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
PMACCTDDIR=${PMACCTDDIR:-/etc/pmacctd}
if [ ${SVCNAME} != "pmacctd" ]; then
PMACCTDPID="/run/${SVCNAME}.pid"
else
PMACCTDPID="/run/pmacctd.pid"
fi
PMACCTDCONF="${PMACCTDDIR}/${SVCNAME}.conf"
depend() {
need net
}
checkconfig() {
if [ ! -e ${PMACCTDCONF} ] ; then
eerror "You need an ${PMACCTDCONF} file to run pmacctd"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start \
--pidfile "${PMACCTDPID}" \
--exec /usr/sbin/"${SVCNAME}" \
-- -D -f "${PMACCTDCONF}" \ -F "${PMACCTDPID}" ${OPTS}
eend $?
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop \
--pidfile "${PMACCTDPID}" \
--exec /usr/sbin/"${SVCNAME}"
eend $?
}
|