-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.txt
114 lines (111 loc) · 5.48 KB
/
help.txt
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
usage: backup.py [-h]
[--command {full,verify,collection-status,list-current-files,restore,remove-older-than,remove-all-but-n-full,cleanup,replicate}]
[--args ARGS] [--config CONFIG] [--print_config [=flags]]
[--title TITLE] [--gpg.fingerprint FINGERPRINT]
[--gpg.public-key-pem PUBLIC_KEY_PEM]
[--gpg.private-key-pem PRIVATE_KEY_PEM]
[--source.baseDir BASEDIR] --dest.baseDir BASEDIR
[--dest.proto PROTO] [--dest.user USER] [--dest.host HOST]
[--dest.port PORT] [--dest.uri URI]
[--directories DIRECTORIES]
[--all-subdirectories {true,false}] [--no-default-config]
[--email CONFIG] [--email.server SERVER] [--email.port PORT]
[--email.sender SENDER] [--email.recipient RECIPIENT]
[--email.user USER] [--email.password PASSWORD]
default config file locations:
['/opt/backup.yml'], Note: no existing default config file found.
options:
-h, --help Show this help message and exit.
ARG: --command {full,verify,collection-status,list-current-files,restore,remove-older-than,remove-all-but-n-full,cleanup,replicate}
ENV: DUPBACK_COMMAND
Set duplicity command e.g. full, restore, remove-all-
but-n-full (default: )
ARG: --args ARGS, --args+ ARGS
ENV: DUPBACK_ARGS
(Default None) Extra args to duplicity. (type:
List[str], default: [])
ARG: --config CONFIG
ENV: DUPBACK_CONFIG
Path to a configuration file.
--print_config [=flags]
Print the configuration after applying all other
arguments and exit. The optional flags customizes the
output and are one or more keywords separated by
comma. The supported flags are: comments,
skip_default, skip_null.
ARG: --title TITLE
ENV: DUPBACK_TITLE
Nice name if the Job. (type: str, default: Backup)
ARG: --gpg.fingerprint FINGERPRINT
ENV: DUPBACK_GPG__FINGERPRINT
Fingerprint of GPG key used to encrypt/sign backups.
(required, type: str, default: )
ARG: --gpg.public-key-pem PUBLIC_KEY_PEM
ENV: DUPBACK_GPG__PUBLIC_KEY_PEM
Public key in pem format. (type: str, default: null)
ARG: --gpg.private-key-pem PRIVATE_KEY_PEM
ENV: DUPBACK_GPG__PRIVATE_KEY_PEM
Private key in pem format (password protected). (type:
str, default: null)
ARG: --source.baseDir BASEDIR
ENV: DUPBACK_SOURCE__BASEDIR
Base/root directory on the source filesystem.
--directories are inside of this location. (type: str,
default: )
ARG: --dest.baseDir BASEDIR
ENV: DUPBACK_DEST__BASEDIR
Base/root directory on the destination filesystem.
--directories will go to this location. (required,
type: str)
ARG: --dest.proto PROTO
ENV: DUPBACK_DEST__PROTO
Protocol used to backup. (type: str, default: null)
ARG: --dest.user USER
ENV: DUPBACK_DEST__USER
User on the destination host to connect as. (type:
str, default: null)
ARG: --dest.host HOST
ENV: DUPBACK_DEST__HOST
The hostname or IP of the destination host. (type:
str, default: null)
ARG: --dest.port PORT
ENV: DUPBACK_DEST__PORT
Port on the destination host to connect on. (type:
int, default: null)
ARG: --dest.uri URI
ENV: DUPBACK_DEST__URI
Override *connection* URI. Does not change other
`dest` values. (type: str, default: )
ARG: --directories DIRECTORIES, --directories+ DIRECTORIES
ENV: DUPBACK_DIRECTORIES
list of directories to backup. in json syntax '[dirA,
dirB]' (type: List[str], default: [])
ARG: --all-subdirectories {true,false}
ENV: DUPBACK_ALL_SUBDIRECTORIES
all 1st level subdirectories of `source-basedir` get
separatly backuped. `directories are ignored` (type:
bool, default: False)
ARG: --no-default-config
ENV: DUPBACK_NO_DEFAULT_CONFIG
do not load default config values from code and files.
(default: False)
<class 'result_reader.EmailSender.EmailParameter'>:
--email CONFIG Path to a configuration file.
ARG: --email.server SERVER
ENV: DUPBACK_EMAIL__SERVER
(type: str | None, default: null)
ARG: --email.port PORT
ENV: DUPBACK_EMAIL__PORT
(type: int, default: 587)
ARG: --email.sender SENDER
ENV: DUPBACK_EMAIL__SENDER
(type: str, default: [email protected])
ARG: --email.recipient RECIPIENT
ENV: DUPBACK_EMAIL__RECIPIENT
(type: str, default: [email protected])
ARG: --email.user USER
ENV: DUPBACK_EMAIL__USER
(type: str | None, default: null)
ARG: --email.password PASSWORD
ENV: DUPBACK_EMAIL__PASSWORD
(type: str | None, default: null)