-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.json.example
53 lines (53 loc) · 981 Bytes
/
config.json.example
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
{
"snapraid": {
"binary": "/usr/bin/snapraid",
"config": "/etc/snapraid.conf",
"nice": 5,
"diff": {
"thresholds": {
"updated": 500,
"removed": 500
}
},
"sync": {
"pre_hash": true,
"auto_sync": {
"enabled": false,
"max_attempts": 3
}
},
"scrub": {
"enabled": true,
"check_percent": 3,
"min_age": 30,
"scrub_new": true,
"scrub_delayed_run": 0
}
},
"notifications": {
"email": {
"enabled": true,
"binary": "/usr/bin/mailx",
"from_email": "[email protected]",
"to_email": "[email protected]"
},
"discord": {
"enabled": false,
"webhook_id": "",
"webhook_token": ""
}
},
"logs": {
"dir": "/var/log/snapper",
"max_count": 14
},
"spindown": {
"enabled": true,
"binary": "/usr/sbin/hdparm",
"drives": "parity"
},
"scripts": {
"pre_run": null,
"post_run": null
}
}