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

Collapse All | Expand All

(-)xinetd.rc6 (-3 / +3 lines)
Lines 24-41 stop() { Link Here
24
24
25
reload() {
25
reload() {
26
	ebegin "Reloading configuration"
26
	ebegin "Reloading configuration"
27
	killall -HUP xinetd &>/dev/null
27
	killall -HUP xinetd >/dev/null 2>&1
28
	eend $?
28
	eend $?
29
}
29
}
30
30
31
dump() {
31
dump() {
32
	ebegin "Dumping configuration"
32
	ebegin "Dumping configuration"
33
	killall -USR1 xinetd &>/dev/null
33
	killall -USR1 xinetd >/dev/null 2>&1
34
	eend $?
34
	eend $?
35
}
35
}
36
36
37
check() {
37
check() {
38
	ebegin "Performing Consistency Check"
38
	ebegin "Performing Consistency Check"
39
	killall -IOT xinetd &>/dev/null
39
	killall -IOT xinetd >/dev/null 2>&1
40
	eend $?
40
	eend $?
41
}
41
}

Return to bug 279931