Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 426956
Collapse All | Expand All

(-)pmacctd.orig (-2 / +2 lines)
Lines 25-37 Link Here
25
start() {
25
start() {
26
	checkconfig || return 1
26
	checkconfig || return 1
27
	ebegin "Starting ${SVCNAME}"
27
	ebegin "Starting ${SVCNAME}"
28
	start-stop-daemon --start --pidfile "${PMACCTDPID}" --exec /usr/sbin/pmacctd \
28
	start-stop-daemon --start --pidfile "${PMACCTDPID}" --exec /usr/sbin/${SVCNAME} \
29
		-- -D -f "${PMACCTDCONF}" -F "${PMACCTDPID}" ${OPTS}
29
		-- -D -f "${PMACCTDCONF}" -F "${PMACCTDPID}" ${OPTS}
30
	eend $?
30
	eend $?
31
}
31
}
32
32
33
stop() {
33
stop() {
34
	ebegin "Stopping ${SVCNAME}"
34
	ebegin "Stopping ${SVCNAME}"
35
	start-stop-daemon --stop --pidfile "${PMACCTDPID}" --exec /usr/sbin/pmacctd
35
	start-stop-daemon --stop --pidfile "${PMACCTDPID}" --exec /usr/sbin/${SVCNAME}
36
	eend $?
36
	eend $?
37
}
37
}

Return to bug 426956