I need to schedule backups for several servers to run after hours on Monday and 
Thursday only.  I want only Full backups, no incrementals.  I do not want any 
backups on any other days.  Will the following work?

$Conf{FullPeriod} = '0.97';
$Conf{IncrPeriod} = '10.97';

$Conf{BlackoutPeriods} = [
    {
        'hourBegin' => 5,
        'hourEnd'   => 19,
        'weekDays'  => [1,4],
    },
    {
        'hourBegin' => 0,
        'hourEnd'   => 24.0,
        'weekDays'  => [0,2,3,5,6],
    },
];

I'm specifically worried about a backup sneaking in at 24.0 during one of the 
blacked out days.  As an alternative, is it absolutely required to put in 
hourBegin and hourEnd parameters?  In other words, if I describe a blackout 
period as

    {
        'weekDays'  => [0,2,3,5,6],
    },

will that work?

Any suggestions/help would be greatly appreciated.

Thanks,

John

+----------------------------------------------------------------------
|This was sent by [email protected] via Backup Central.
|Forward SPAM to [email protected].
+----------------------------------------------------------------------



------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
BackupPC-users mailing list
[email protected]
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to