blob: 715e6e8749c76e15d2aab0864e7d405593fa3559 (
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
|
#!/sbin/openrc-run
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header$
PIDFILE=/var/run/rtpproxy.pid
depend() {
need net
}
start() {
ebegin "Starting rtpproxy"
start-stop-daemon --start --quiet --pidfile "${PIDFILE}" \
--exec /usr/bin/rtpproxy \
-- -urtpproxy:rtpproxy -p"${PIDFILE}" ${RTPPROXY_OPTS}
eend $?
}
stop() {
ebegin "Stopping rtpproxy"
start-stop-daemon --stop --quiet --pidfile "${PIDFILE}"
eend $?
}
|