#!/bin/sh
#
#  Bacula's version of what is usually in /etc/rc.d/rc -- pretty much empty
#
# Start/stop services when switching run levels
#
argv1="$1"

if [ $argv1 -eq 1 ] ; then
   exec init -t1 S
fi

exit 0
