Home | Trees | Indices | Help |
|
---|
|
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.3) 13 # Project : Cedar Backup, release 2 14 # Revision : $Id: __init__.py 682 2007-02-17 23:23:58Z pronovic $ 15 # Purpose : Provides package initialization 16 # 17 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 18 19 ######################################################################## 20 # Module documentation 21 ######################################################################## 22 23 """ 24 Implements local and remote backups to CD or DVD media. 25 26 Cedar Backup is a software package designed to manage system backups for a pool 27 of local and remote machines. Cedar Backup understands how to back up 28 filesystem data as well as MySQL and PostgreSQL databases and Subversion 29 repositories. It can also be easily extended to support other kinds of data 30 sources. 31 32 Cedar Backup is focused around weekly backups to a single CD or DVD disc, with 33 the expectation that the disc will be changed or overwritten at the beginning 34 of each week. If your hardware is new enough, Cedar Backup can write 35 multisession discs, allowing you to add incremental data to a disc on a daily 36 basis. 37 38 Besides offering command-line utilities to manage the backup process, Cedar 39 Backup provides a well-organized library of backup-related functionality, 40 written in the Python programming language. 41 42 @author: Kenneth J. Pronovici <pronovic@ieee.org> 43 """ 44 45 46 ######################################################################## 47 # Package initialization 48 ######################################################################## 49 50 # Using 'from CedarBackup2 import *' will just import the modules listed 51 # in the __all__ variable. 52 53 __all__ = [ 'actions', 'cli', 'config', 'extend', 'filesystem', 'knapsack', 54 'peer', 'release', 'tools', 'util', 'writers', ] 55
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon May 5 19:58:36 2008 | http://epydoc.sourceforge.net |