#!/bin/sh
exec 2>&1
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions

sv start frontend || exit 1

stat_runit "Starting x11vnc"
. /etc/systemconfig
if [ -e /etc/x11vnc.cfg ]
then
    . /etc/x11vnc.cfg
    exec chpst -umythtv x11vnc $x11vnc_options
else
    exec chpst -umythtv x11vnc -forever -rfbport 5902 --passwd $xvncpassword
fi
