#!/bin/sh

# If a server is already running, kill it first
P=`ps -o pid= -C fbvncserver`
if [ "${P}" ];then
  kill ${P}
  sleep 1
fi

