you can put this in crontab:

daily incrementals:

> 00 02 * * * backuppc /usr/share/backuppc/bin/BackupPC_serverMesg backup
> host.domain.tld host.domain.tld backuppc 0
>

monthly fulls:

> 59 11 * * * backuppc if [ `/usr/local/bin/date +%d -d tomorrow` = 01 ] ;
> then /usr/share/backuppc/bin/BackupPC_serverMesg backup host.domain.tld
> host.domain.tld backuppc 1



the 'monthy fulls' part is just saying 'run this script if tomorrow is the
first. of the month BUT it must be run at the end of the night, not in the
morning.  if you wanted to have it run at 2am do

monthly fulls:

> 00 02 * * * backuppc if [ `/usr/local/bin/date +%d -d tomorrow` = 02 ] ;
> then /usr/share/backuppc/bin/BackupPC_serverMesg backup host.domain.tld
> host.domain.tld backuppc 1
>

this will say 'if tomorrow is the second, run this' BUT you would need to
run this very early on the in the day.

On Mon, Mar 3, 2008 at 11:10 AM, Carl Wilhelm Soderstrom <
[EMAIL PROTECTED]> wrote:

> On 02/29 05:06 , deblike wrote:
> > I'm kinda stuck on this too, I need to run backups on a fixed schedule,
> > let's say 02:00 AM every day, but I'm failing to see how to achieve
> > this.
> > Any clue?
>
> put this in /etc/crontab:
>
> 00 02 * * * backuppc /usr/share/backuppc/bin/BackupPC_serverMesg backup
> host.domain.tld host.domain.tld backuppc 1
>
>
> the '1' is for a full backup; a '0' would do an incremental.
>
> --
> Carl Soderstrom
> Systems Administrator
> Real-Time Enterprises
> www.real-time.com
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> 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/
>
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
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