blob: 31104fc75c9e86e23e99196de4a9ca368f11967a (
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/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/files/xinetd.rc6,v 1.20 2008/12/31 09:06:44 vapier Exp $
opts="reload dump check"
depend() {
use net
}
start() {
ebegin "Starting xinetd"
start-stop-daemon --start --pidfile /var/run/xinetd.pid -- \
xinetd -pidfile /var/run/xinetd.pid ${XINETD_OPTS}
eend $?
}
stop() {
ebegin "Stopping xinetd"
start-stop-daemon --stop --quiet --pidfile /var/run/xinetd.pid
eend $?
}
reload() {
ebegin "Reloading configuration"
killall -HUP xinetd &>/dev/null
eend $?
}
dump() {
ebegin "Dumping configuration"
killall -USR1 xinetd &>/dev/null
eend $?
}
check() {
ebegin "Performing Consistency Check"
killall -IOT xinetd &>/dev/null
eend $?
}
|