1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 """
23 Implements local and remote backups to CD or DVD media.
24
25 Cedar Backup is a software package designed to manage system backups for a pool
26 of local and remote machines. Cedar Backup understands how to back up
27 filesystem data as well as MySQL and PostgreSQL databases and Subversion
28 repositories. It can also be easily extended to support other kinds of data
29 sources.
30
31 Cedar Backup is focused around weekly backups to a single CD or DVD disc, with
32 the expectation that the disc will be changed or overwritten at the beginning
33 of each week. If your hardware is new enough, Cedar Backup can write
34 multisession discs, allowing you to add incremental data to a disc on a daily
35 basis.
36
37 Besides offering command-line utilities to manage the backup process, Cedar
38 Backup provides a well-organized library of backup-related functionality,
39 written in the Python programming language.
40
41 @author: Kenneth J. Pronovici <pronovic@ieee.org>
42 """
43
44
45
46
47
48
49
50
51
52 __all__ = [ 'actions', 'cli', 'config', 'extend', 'filesystem', 'knapsack',
53 'peer', 'release', 'tools', 'util', 'writers', ]
54