Class representing a Cedar Backup global options configuration.
The options section is used to store global configuration options and
defaults that can be applied to other sections.
As with all of the other classes that represent configuration
sections, all of these values are optional. It is up to some
higher-level construct to decide whether everything they need is filled
in. Some validation is done on non-None
assignments
through the use of the Python property()
construct.
The following restrictions exist on data in this class:
|
__init__(self,
startingDay=None,
workingDir=None,
backupUser=None,
backupGroup=None,
rcpCommand=None,
overrides=None,
hooks=None)
Constructor for the OptionsConfig class. |
source code
|
|
|
|
|
|
|
|
|
|
|
_getStartingDay(self)
Property target used to get the starting day. |
source code
|
|
|
|
|
_getWorkingDir(self)
Property target used to get the working directory. |
source code
|
|
|
|
|
_getBackupUser(self)
Property target used to get the backup user. |
source code
|
|
|
|
|
_getBackupGroup(self)
Property target used to get the backup group. |
source code
|
|
|
|
|
_getRcpCommand(self)
Property target used to get the rcp command. |
source code
|
|
|
|
|
_getOverrides(self)
Property target used to get the command path overrides list. |
source code
|
|
|
|
|
_getHooks(self)
Property target used to get the command path hooks list. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|