Based on recent discussions the list, I'm experimenting with cleaning up the 
bacula-dir.conf, and defining one job for each client instead of defining 
"Full" and "Incremental" jobs with different names and hard-coded levels.

For example, I've changed:
        Job {
                Name = "snickers-full"
                Client = snickers-fd
                JobDefs = "DefaultFullJob"
                Write Bootstrap = "/usr/local/bacula/var/working/snickers.bsr"
                Schedule = "Full-Thu"
        }
        Job {
                Name = "snickers-inc"
                Client = snickers-fd
                JobDefs = "DefaultIncJob"
                Write Bootstrap = "/usr/local/bacula/var/working/snickers.bsr"
                Schedule = "Inc-Thu"
        }

to
        Job {
                Name = "snickers"
                Client = snickers-fd
                JobDefs = "DefaultJob"
                Write Bootstrap = "/usr/local/bacula/var/working/snickers.bsr"
                Schedule = "Thu"
        }

Now, the "run" directives in the Schedule determine whether the specific job
will be a Full or Incremental/Differential backup.

So far, this looks good.

However, when I run an incremental backup, I get the message:

        No prior Full backup Job record found.
        No prior or suitable Full backup found. Doing FULL backup.

I understand the message, but I don't want to do a full backup. The client and
FileSet are unchanged, so a full backup of "snickers" does exist (under the job 
name "snickers-full").

Is there any way to instruct Bacula to base it's idea of whether a Full backup
exists on the combination of the client name and the fileset, not on the job
name? Essentially, can the new "snickers" job be an alias for both
"snickers-full" and "snickers-inc"?


Also, if I do go ahead with the change to the job names, will the existing
job (and file and volume) records be purged according to their existing
retention periods, even if those jobs are no longer being run?

Thanks,

Mark



----
Mark Bergman                      [EMAIL PROTECTED]
System Administrator
Section of Biomedical Image Analysis             215-662-7310
Department of Radiology,           University of Pennsylvania

http://pgpkeys.pca.dfn.de:11371/pks/lookup?search=mark.bergman%40.uphs.upenn.edu




The information contained in this e-mail message is intended only for the 
personal and confidential use of the recipient(s) named above. If the reader of 
this message is not the intended recipient or an agent responsible for 
delivering it to the intended recipient, you are hereby notified that you have 
received this document in error and that any review, dissemination, 
distribution, or copying of this message is strictly prohibited. If you have 
received this communication in error, please notify us immediately by e-mail, 
and delete the original message.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to