summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/runit-scripts-mv/runitscripts/services/evrouter/run
blob: 56f7ae6e5e0402b0f8b48827df3ef5ae680b60d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
. /etc/profile
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions

which evrouter >/dev/null 2>/dev/null
if [ $? = 0 ]
then

	stat_runit "Starting evrouter"
	ps -ef |grep -v grep|grep -q "Xvfb :50"
	if [ ! $?  = 0 ]
	then
		sv start Xvfb
	fi
	
	su mythtv -c "DISPLAY=localhost:50 evrouter -c /etc/evrouter.cfg -f /dev/input/event*"
fi