mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
wip
This commit is contained in:
parent
ffd7bc1021
commit
8b0092908a
2 changed files with 25 additions and 0 deletions
8
internal/ui/config/testdata/backend-local.conf
vendored
Normal file
8
internal/ui/config/testdata/backend-local.conf
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
backend "foo" {
|
||||
type = "local"
|
||||
path = "/srv/data/repo"
|
||||
}
|
||||
|
||||
backend "bar" {
|
||||
path = "/srv/data/repo"
|
||||
}
|
17
internal/ui/config/testdata/backend-local.golden
vendored
Normal file
17
internal/ui/config/testdata/backend-local.golden
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"Repo": "",
|
||||
"Password": "",
|
||||
"PasswordFile": "",
|
||||
"Backends": {
|
||||
"bar": {
|
||||
"Type": ""
|
||||
},
|
||||
"foo": {
|
||||
"Type": "local"
|
||||
}
|
||||
},
|
||||
"Backup": {
|
||||
"Target": null,
|
||||
"Excludes": null
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue