aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rtpproxy/rtpproxy.initd
diff options
context:
space:
mode:
authorJeff Bilyk <jbilyk@gmail.com>2011-02-09 19:23:39 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2011-02-09 19:40:22 -0600
commit19057f79c2bfa546d2badfcab7bd036b96b6db64 (patch)
tree9e7be195e5939a7851820c22caae9e083a172e03 /testing/rtpproxy/rtpproxy.initd
parent5017a62317c4020cb555c31bf3f4e53b385b8041 (diff)
downloadaports-19057f79c2bfa546d2badfcab7bd036b96b6db64.tar.bz2
aports-19057f79c2bfa546d2badfcab7bd036b96b6db64.tar.xz
main/rtpproxy: moved from testing
moved rtpproxy to main
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 $?
-}
-