#!/bin/sh
#
# Run gnome-console with test config file
#
if [ $# = 1 ] ; then
   echo "doing gnome-console $1.conf"
   /usr/sbin/gnome-console -c $1.conf
else
   /usr/sbin/gnome-console -c /etc/bacula/gnome-console.conf
fi
