This commit is contained in:
Alexander Neumann
2018-05-04 00:15:15 +02:00
parent 722517c480
commit aaef54559a
10 changed files with 224 additions and 42 deletions
+6
View File
@@ -0,0 +1,6 @@
backup {
target = [
"foo",
"/home/user",
]
}
+10
View File
@@ -0,0 +1,10 @@
{
"Backends": null,
"Repo": "",
"Backup": {
"Target": [
"foo",
"/home/user"
]
}
}
-1
View File
@@ -1 +0,0 @@
quiet = true
-4
View File
@@ -1,4 +0,0 @@
{
"Quiet": true,
"Repos": null
}
+2 -6
View File
@@ -1,10 +1,6 @@
repo "test" {
backend "test" {
backend = "local"
path = "/foo/bar/baz"
}
foobar "test" {
x = "y"
}
quiet = false
repo = "test"
+4 -3
View File
@@ -1,9 +1,10 @@
{
"Quiet": false,
"Repos": {
"Backends": {
"test": {
"Backend": "local",
"Path": "/foo/bar/baz"
}
}
},
"Repo": "test",
"Backup": null
}