-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
35 lines (35 loc) · 1.1 KB
/
config.json
File metadata and controls
35 lines (35 loc) · 1.1 KB
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
[
{
"source-name": "Local Backup",
"source": "local",
"destination-name": "This Computer",
"destination": "local:/backupDirectory",
"lock-file": "/home/nemes/.dont_backup_if_Im_here",
"directories": [
"/back/me/up",
"/and/me/too.txt"
]
},
{
"source-name": "Local to Remote Backup",
"source": "local",
"destination-name": "Some Other Computer",
"destination": "ssh_name:/backupDirectory",
"lock-file": "/home/nemes/.dont_backup_if_Im_here",
"directories": [
"/back/me/up",
"/and/me/too.txt"
]
},
{
"source-name": "Remote to Remote Backup",
"source": "remote:ssh_name_of_a_computer",
"destination-name": "A Server far far away",
"destination": "ssh_of_server_that_the_remote_source_has_in_their_ssh_config:/backupDirectory",
"lock-file": "/bleh/.dont_backup_if_Im_here",
"directories": [
"/back/me/up",
"/and/me/too.txt"
]
}
]