summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-tv/pytivo-wmcbrine/files/pytivo')
-rw-r--r--media-tv/pytivo-wmcbrine/files/pytivo24
1 files changed, 0 insertions, 24 deletions
diff --git a/media-tv/pytivo-wmcbrine/files/pytivo b/media-tv/pytivo-wmcbrine/files/pytivo
deleted file mode 100644
index 62a4070b5..000000000
--- a/media-tv/pytivo-wmcbrine/files/pytivo
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-depend() {
- need localmount net
- after bootmisc
-}
-
-start() {
- ebegin "Starting pyTivo"
- start-stop-daemon --start --exec /usr/bin/pytivo \
- --pidfile /var/run/pytivo.pid -m -N 19 -u pytivo:pytivo \
- -- > /tmp/pyTivo.log 2>&1 &
- eend $?
-}
-
-stop() {
- ebegin "Stopping pyTivo"
- start-stop-daemon --stop --exec /usr/bin/pytivo \
- --pidfile /var/run/pytivo.pid
- eend $?
-}