you mean something like that?
#!/bin/bash
month=1
day=11
while [  $month -lt 12 ]; do
        date --set 2017-$month-01

        while [  $day -lt 31 ]; do
                date --set 2017-$month-$day
                let day=day+1
                sleep 70
                done

        let month=month+1
        day=1
done

I tried that on the server, where director and fd are running, but no backup 
were down. even if I used the same time in my backup plan.

-- 
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