blob: c8670395f93a002d795dc549092e2edc37b7c40d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rinetd/files/rinetd.rc,v 1.1 2004/12/06 04:39:01 vapier Exp $
depend() {
use net
}
start() {
ebegin "Starting rinetd"
/usr/sbin/rinetd
eend $?
}
stop() {
local ret
ebegin "Stopping rinetd"
start-stop-daemon --stop --pidfile /var/run/rinetd.pid
ret=$?
rm -f /var/run/rinetd.pid
eend ${ret}
}
|