Posts Tagged ‘sample’

Simple Duplicity backup scheme

September 21, 2011

Here is the quick description of how you can setup simple backup scheme in Duplicity:

00 22 1 * * /usr/bin/duplicity full –no-encryption /etc/vsftpd file:///var/backup/ftp/conf.bp
00 22 2-31 * * /usr/bin/duplicity inc –no-encryption /etc/vsftpd file:///var/backup/ftp/conf.bp
00 23 1 * * /usr/bin/duplicity remove-older-than 6M –no-encryption –force file:///var/backup/ftp/conf.bp

First line create full backup on first day of month. Second make incremental backups each other day. And by third line I leave backups for the last 6 months.

Advertisement