-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json-dist
38 lines (33 loc) · 924 Bytes
/
config.json-dist
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
{
"logFolder": "/var/log/rsync-backup/",
"preCommands": [
"cp -r /var/lib/mysql /home/user/backups",
"cp /etc/fstab /home/user/backups",
"/home/user/apps/rsync-backup/dpkg-origins > /home/user/backups/packages.lst"
],
"local": [
{
"from": "/home",
"to": "/mnt/home-backup",
"toDevice": "/dev/sdb5",
"excludeList": "home-exclude.lst",
"remount": true
},
{
"from": "/",
"to": "/mnt/root-backup",
"toDevice": "/dev/sdb1",
"excludeList": "root-exclude.lst",
"remount": true
}
],
"onlyHome": true,
"homeMAC": "00:00:00:00:00:00",
"remote": [
{
"from": "/home",
"to": "[email protected]:/backup/user",
"excludeList": "home-exclude.lst"
}
]
}