Package CedarBackup2
[hide private]
[frames] | no frames]

Source Code for Package CedarBackup2

 1  # -*- coding: iso-8859-1 -*- 
 2  # vim: set ft=python ts=3 sw=3 expandtab: 
 3  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
 4  # 
 5  #              C E D A R 
 6  #          S O L U T I O N S       "Software done right." 
 7  #           S O F T W A R E 
 8  # 
 9  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
10  # 
11  # Author   : Kenneth J. Pronovici <pronovic@ieee.org> 
12  # Language : Python (>= 2.5) 
13  # Project  : Cedar Backup, release 2 
14  # Purpose  : Provides package initialization 
15  # 
16  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
17   
18  ######################################################################## 
19  # Module documentation 
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  # Package initialization 
47  ######################################################################## 
48   
49  # Using 'from CedarBackup2 import *' will just import the modules listed 
50  # in the __all__ variable. 
51   
52  __all__ = [ 'actions', 'cli', 'config', 'extend', 'filesystem', 'knapsack',  
53              'peer', 'release', 'tools', 'util', 'writers', ] 
54