forked from turnkeylinux/tklbam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd.py
executable file
·46 lines (37 loc) · 1.38 KB
/
cmd.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
#
# Copyright (c) 2010-2012 Liraz Siri <[email protected]>
#
# This file is part of TKLBAM (TurnKey GNU/Linux BAckup and Migration).
#
# TKLBAM is open source software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3 of
# the License, or (at your option) any later version.
#
"""
TurnKey GNU/Linux Backup and Migration
Environment variables:
TKLBAM_CONF Path to TKLBAM configurations dir
Default: $TKLBAM_CONF
TKLBAM_REGISTRY Path to TKLBAM registry
Default: $TKLBAM_REGISTRY
"""
from os.path import *
from cliwrapper import CliWrapper
from string import Template
import conf
import registry
class CliWrapper(CliWrapper):
DESCRIPTION = Template(__doc__).substitute(TKLBAM_CONF=conf.Conf.DEFAULT_PATH,
TKLBAM_REGISTRY=registry._Registry.DEFAULT_PATH)
PATH = [ dirname(realpath(__file__)) ]
COMMANDS_USAGE_ORDER = ['init',
'',
'passphrase', 'escrow',
'',
'backup', 'list', 'restore', 'restore-rollback',
'',
'status', 'internal']
if __name__ == "__main__":
CliWrapper.main()