#!/bin/sh

if [ -f /etc/sysconfig/x11vncd ]; then
	. /etc/sysconfig/x11vncd
fi

while(true)
do
    /usr/bin/x11vnc $X11VNC_OPTIONS 1>/dev/null 2>&1
    sleep 1s
done
