summaryrefslogtreecommitdiff
path: root/testing/timidity++/timidity++.sh
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-08-20 00:02:06 +0000
committerroot <root@rshg054.dnsready.net>2012-08-20 00:02:06 +0000
commit524da814660fa35bca4a24d0faa0a10b7eab5c6f (patch)
tree1bcbd03b3e06e28d9fa0d461e72d4964830e9c05 /testing/timidity++/timidity++.sh
parent07455ea1de16867b168628e8a9f7f5bffc169a5f (diff)
Mon Aug 20 00:02:06 UTC 2012
Diffstat (limited to 'testing/timidity++/timidity++.sh')
-rw-r--r--testing/timidity++/timidity++.sh38
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/timidity++/timidity++.sh b/testing/timidity++/timidity++.sh
new file mode 100644
index 000000000..3fa13cea9
--- /dev/null
+++ b/testing/timidity++/timidity++.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID=`pidof -o %PPID /usr/bin/timidity`
+case "$1" in
+ start)
+ stat_busy "Starting Timidity++ ALSA Daemon"
+ [ -z "$PID" ] && /usr/bin/timidity -iAD > /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ echo $PID > /var/run/timidity.pid
+ add_daemon timidity++
+ stat_done
+ fi
+ ;;
+ stop)
+ stat_busy "Stopping Timidity++ ALSA Daemon"
+ [ ! -z "$PID" ] && kill $PID &> /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ rm /var/run/timidity.pid
+ rm_daemon timidity++
+ stat_done
+ fi
+ ;;
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac
+exit 0