Package CedarBackup2 :: Module action
[hide private]
[frames] | no frames]

Source Code for Module CedarBackup2.action

 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  # Revision : $Id: action.py 1022 2011-10-11 23:27:49Z pronovic $ 
15  # Purpose  : Provides implementation of various backup-related actions. 
16  # 
17  # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
18   
19  ######################################################################## 
20  # Module documentation 
21  ######################################################################## 
22   
23  """ 
24  Provides interface backwards compatibility. 
25   
26  In Cedar Backup 2.10.0, a refactoring effort took place to reorganize the code 
27  for the standard actions.  The code formerly in action.py was split into 
28  various other files in the CedarBackup2.actions package.  This mostly-empty 
29  file remains to preserve the Cedar Backup library interface. 
30   
31  @author: Kenneth J. Pronovici <pronovic@ieee.org> 
32  """ 
33   
34  ######################################################################## 
35  # Imported modules 
36  ######################################################################## 
37   
38  # pylint: disable=W0611 
39  from CedarBackup2.actions.collect import executeCollect 
40  from CedarBackup2.actions.stage import executeStage 
41  from CedarBackup2.actions.store import executeStore 
42  from CedarBackup2.actions.purge import executePurge 
43  from CedarBackup2.actions.rebuild import executeRebuild 
44  from CedarBackup2.actions.validate import executeValidate 
45