summaryrefslogtreecommitdiffstats
path: root/abs/core/mythtv/stable-0.24/mythplugins/mtd
diff options
context:
space:
mode:
authorJames Meyer <jams@linhes.org>2010-12-10 01:32:00 (GMT)
committerJames Meyer <jams@linhes.org>2010-12-10 01:32:00 (GMT)
commit9f2432479633a0167f4574118dd030332903a4fc (patch)
tree1cb4a1c3358bf05412ade02c7072038fa0b9c78f /abs/core/mythtv/stable-0.24/mythplugins/mtd
parentf497e1217c3045b04571e05b2265f0e995cc98d0 (diff)
downloadlinhes_pkgbuild-9f2432479633a0167f4574118dd030332903a4fc.zip
linhes_pkgbuild-9f2432479633a0167f4574118dd030332903a4fc.tar.gz
linhes_pkgbuild-9f2432479633a0167f4574118dd030332903a4fc.tar.bz2
mythplugins: remove mythplugins from the name
Diffstat (limited to 'abs/core/mythtv/stable-0.24/mythplugins/mtd')
-rw-r--r--abs/core/mythtv/stable-0.24/mythplugins/mtd36
1 files changed, 0 insertions, 36 deletions
diff --git a/abs/core/mythtv/stable-0.24/mythplugins/mtd b/abs/core/mythtv/stable-0.24/mythplugins/mtd
deleted file mode 100644
index 1f46dfe..0000000
--- a/abs/core/mythtv/stable-0.24/mythplugins/mtd
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/bin/mtd`
-case "$1" in
- start)
- stat_busy "Starting Myth Transcoding Daemon"
- [ -z "$PID" ] && /usr/bin/mtd -d
- if [ $? -gt 0 ]; then
- stat_fail
- else
- echo $PID > /var/run/mtd.pid
- add_daemon mythtranscode
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Myth Transcoding Daemon"
- [ ! -z "$PID" ] && kill $PID &>/dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon mtd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0