blob: fd38c2b2cf663abcd909753df13060a6d7dd8970 [file] [log] [blame]
Filip Pytloun311d79c2015-10-06 16:28:31 +02001
2===========
3Backupninja
4===========
5
6Backupninja allows you to coordinate system backup by dropping a few simple configuration files into /etc/backup.d/. Most programs you might use for making backups don't have their own configuration file format.
7
8Backupninja provides a centralized way to configure and schedule many different backup utilities. It allows for secure, remote, incremental filesytem backup (via rdiff-backup), compressed incremental data, backup system and hardware info, encrypted remote backups (via duplicity), safe backup of MySQL/PostgreSQL databases, subversion or trac repositories, burn CD/DVDs or create ISOs, incremental rsync with hardlinking.
9
10Sample pillars
11==============
12
13Backup client with ssh/rsync remote target
14
15 backupninja:
16 client:
17 enabled: true
18 target:
19 engine: rsync
20 host: 10.10.10.208
21 user: backupninja
22
23Backup client with s3 remote target
24
25 backupninja:
26 client:
27 enabled: true
28 target:
29 engine: s3
30 host: s3.domain.com
31 bucket: bucketname
32
33Backup server rsync/rdiff
34
35 backupninja:
36 server:
37 enabled: true
38 rdiff: true
39 keys:
40 - client1.domain.com
41
42Read more
43=========
44
45* https://labs.riseup.net/code/projects/backupninja/wiki/Configuration
46* http://www.debian-administration.org/articles/351
47* http://duncanlock.net/blog/2013/08/27/comprehensive-linux-backups-with-etckeeper-backupninja/
48* https://github.com/riseuplabs/puppet-backupninja
49* http://www.ushills.co.uk/2008/02/backup-with-backupninja.html