summaryrefslogtreecommitdiff
blob: 88807c95c7bcbbd9893b767e3fe1a7557a4eb85f (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/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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}
}