summaryrefslogtreecommitdiff
blob: abdb04755702acdc9b183f366ab8846915973317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

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