#!/bin/bash
MYTH_RUN_STATUS="1"
. /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*"
	exec sudo -u mythtv -i DISPLAY=localhost:50 evrouter -c /etc/evrouter.cfg -f /dev/input/event*
fi

