1- How to prevent an Incremental job from be upgraded automatically to Full 
backup if no previous Full backup was done?

2- Which is the First weekday regarding to the below clauses: Monday or Sunday?
   <wday-keyword> = sun | mon | tue | wed | thu | fri | sat
   w00 is not defined by the ISO specification. A week starts with Monday and 
ends with Sunday.
   
3- I have 3 Jobs (Job1-Job3) using the same Pool (Volume123) and scheduled on 
the same date on different hours, Job1 21:00, Job2 22:00, Job3 23:00; 
a- How to make only Job1 to prune and recycle only Volume123 before starting 
using it? 
I tried to use RunScript in Job1 but I'm confused how to use "purge" command?
RunScript {
  Console = "purge volume %v"
  RunsWhen = Before
  FailJobOnError = Yes
  RunsOnClient = No 
}
b- How to make only Job3 to eject only Volume123 after its backup completed 
successfully? 
Will RunAfterJob (Job3) do the trick?
RunAfterJob = "/etc/bacula/end_of_backup.sh"
----------end_of_backup.sh-----------
#! /bin/sh
/usr/lib/bacula/delete_catalog_backup
mt rewind
mt eject
exit 0
-------------------------------------

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to