To take advantage of bacula's DVD/CD writing, install cdrtools and
dvd+rw-tools packages.

Example config files for Bacula have been installed in
/usr/local/share/examples/bacula and copied also to
/etc/bacula, edit them to your site's needs.

Backend database creation/update scripts are located in
/usr/local/libexec/bacula

To start, add the following to /etc/rc.local:
if [ -x /usr/local/libexec/bacula/bacula-ctl-fd ]; then
  /usr/local/libexec/bacula/bacula-ctl-fd start
  echo -n ' bacula-fd'
fi
if [ -x /usr/local/libexec/bacula/bacula-ctl-sd ]; then
  /usr/local/libexec/bacula/bacula-ctl-sd start
  echo -n ' bacula-sd'
fi
if [ -x /usr/local/libexec/bacula/bacula-ctl-dir ]; then
  /usr/local/libexec/bacula/bacula-ctl-dir start
  echo -n ' bacula-dir'
fi
