1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"smtp_server": "localhost",
"rtqueue": "rtqueue",
"identities": {
"_default": "Alpine Auditor <auditor@alpine.local>"
},
"groups": {
"all": {
"notify_email": [ "Notify Group <config-changes@alpine.local>" ],
"track_filemode": true,
"no_track": [
"*/.git/*", "*.apk-new", "*~",
"etc/unbound/root.hints",
"etc/chrony/chrony.drift",
"etc/ld.so.cache"
],
"no_notify": [ "etc/acf/password", "*/.ssh/known_hosts" ],
"no_diff": [ "etc/shadow*", "etc/ssh/ssh_host_*_key", "*/.ssh/*", "*.crt","*.pem", "*.pfx" ]
}
}
}
|