27df66b44d
Bacula changelog: http://bacula.svn.sourceforge.net/viewvc/bacula/branches/Branch-2.2/bacula/ChangeLog?revision=6309&view=markup Major port change in this version: -main subpackage is now bacula-client -server subpackage remains bacula-server -bat subpackage is new bacula admin tool -client subpackage goes away. If the old -main subpackage was installed, the upgrade path is to install both bacula-client and bacula-server. Lots of input and assistance from sthen and okan. ok okan; "if it works for you, go for it" sthen
23 lines
771 B
Plaintext
23 lines
771 B
Plaintext
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
|
|
!!TRUEPREFIX!!/share/examples/bacula and copied also to
|
|
!!BACULACONF!!, edit them to your site's needs.
|
|
|
|
Backend database creation/update scripts are located in
|
|
!!TRUEPREFIX!!/libexec/bacula
|
|
|
|
To allow the storage daemon user to access tape devices,
|
|
be sure to add !!SD_USER!! to the operator group.
|
|
|
|
To start, add the following to /etc/rc.local:
|
|
if [ -x !!TRUEPREFIX!!/libexec/bacula/bacula-ctl-sd ]; then
|
|
!!TRUEPREFIX!!/libexec/bacula/bacula-ctl-sd start
|
|
echo -n ' bacula-sd'
|
|
fi
|
|
if [ -x !!TRUEPREFIX!!/libexec/bacula/bacula-ctl-dir ]; then
|
|
!!TRUEPREFIX!!/libexec/bacula/bacula-ctl-dir start
|
|
echo -n ' bacula-dir'
|
|
fi
|