aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rtpproxy/rtpproxy.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/rtpproxy/rtpproxy.initd')
-rw-r--r--testing/rtpproxy/rtpproxy.initd25
1 files changed, 0 insertions, 25 deletions
diff --git a/testing/rtpproxy/rtpproxy.initd b/testing/rtpproxy/rtpproxy.initd
deleted file mode 100644
index 5e53e51e88..0000000000
--- a/testing/rtpproxy/rtpproxy.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/runscript
-# 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 $?
-}
-