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

43 lines
713 B
Plaintext
Raw Normal View History

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