restic/internal/ui/config/testdata/all.golden

43 lines
713 B
Plaintext
Raw Normal View History

2018-05-13 13:11:21 +00:00
{
"Repo": "sftp:user@server:/srv/repo",
"Password": "secret",
"PasswordFile": "/root/secret.txt",
2018-05-13 20:57:18 +00:00
"Backends": {
"local": {
"Type": "local",
2018-05-14 21:21:24 +00:00
"local": {
"Type": "local",
"Path": "/foo/bar"
},
"sftp": null
2018-05-13 20:57:18 +00:00
},
"local2": {
"Type": "local",
2018-05-14 21:21:24 +00:00
"local": {
"Type": "",
"Path": "/foo/bar"
},
"sftp": null
2018-05-13 20:57:18 +00:00
},
"sftp": {
"Type": "sftp",
2018-05-14 21:21:24 +00:00
"local": null,
"sftp": {
"Type": "sftp",
"User": "foo",
"Host": "bar",
"Path": "/foo/bar"
}
2018-05-13 20:57:18 +00:00
}
},
2018-05-13 13:11:21 +00:00
"Backup": {
"Target": [
"/home/user/",
"/home/otheruser"
],
"Excludes": [
"*.c"
]
}
}