blob: 8262b80571b51ab013c8755232fccb5942dd9cf7 (
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
42
43
44
45
|
#!/sbin/runscript
# Copyright 1999-2004 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.17 2004/07/15 00:53:48 agriffis Exp $
opts="start stop reload restart dump check"
depend() {
need net
}
start() {
ebegin "Starting xinetd"
(
# workaround for #25754
unset -f `declare -F | sed 's:declare -f::g'`
start-stop-daemon --start --quiet --exec /usr/sbin/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 $?
}
|