Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 245593 | Differences between
and this patch

Collapse All | Expand All

(-)dictd.orig (-2 / +2 lines)
Lines 61-72 Link Here
61
start() {
61
start() {
62
	prepconfig || return 1
62
	prepconfig || return 1
63
	ebegin "Starting dictd"
63
	ebegin "Starting dictd"
64
	start-stop-daemon --start --quiet --exec /usr/sbin/dictd -- ${DICTD_OPTS}
64
	start-stop-daemon --start --quiet -p ${DICTD_PID} --exec /usr/sbin/dictd -- --pid-file ${DICTD_PID} ${DICTD_OPTS}
65
	eend $?
65
	eend $?
66
}
66
}
67
67
68
stop() {
68
stop() {
69
	ebegin "Stopping dictd"
69
	ebegin "Stopping dictd"
70
	start-stop-daemon --stop --quiet --exec /usr/sbin/dictd
70
	start-stop-daemon --stop --quiet -p ${DICTD_PID} --exec /usr/sbin/dictd
71
	eend $?
71
	eend $?
72
}
72
}

Return to bug 245593