-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
25 lines (22 loc) · 1.19 KB
/
config.toml
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
[defaults]
# Do not add flags for deletions or dry runs since these are added automatically
# when the corresponding args (utils.py/syncers.py) are set to True.
rsync = ["-a", "-i", "-v", "-h"]
robocopy = ["/E", "/DCOPY:DAT", "/COPY:DAT", "/R:3", "/W:1", "/NDL"]
[backup]
# Do not add flags for deletions or dry runs since these are added automatically
# when the corresponding args (utils.py/syncers.py) are set to True.
rsync = ["-a", "-i", "-v", "-h"]
robocopy = ["/E", "/DCOPY:DAT", "/COPY:DAT", "/R:3", "/W:1", "/NDL"]
[mirror]
# Do not add flags for deletions or dry runs since these are added automatically
# when the corresponding args (utils.py/syncers.py) are set to True.
rsync = ["-a", "-i", "-v", "-h"]
robocopy = ["/E", "/DCOPY:DAT", "/COPY:DAT", "/R:3", "/W:1", "/NDL"]
[incremental]
# Do not add flags for deletions or dry runs since these are added automatically
# when the corresponding args (utils.py/syncers.py) are set to True.
rsync = ["-a", "-i", "-v", "-h"]
# Do not add flags to robocopy regarding symlink/junction behaviour for incremental.
# Might break the incremental backup function. This applies only to robocopy.
robocopy = ["/E", "/DCOPY:DAT", "/COPY:DAT", "/R:3", "/W:1", "/NDL"]