mirror of
https://github.com/restic/restic.git
synced 2026-05-20 09:05:23 +00:00
wip
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
repo = "sftp:user@server:/srv/repo"
|
||||
password = "secret"
|
||||
password_file = "/root/secret.txt"
|
||||
|
||||
backup {
|
||||
target = [
|
||||
"/home/user/",
|
||||
"/home/otheruser",
|
||||
]
|
||||
|
||||
exclude = ["*.c"]
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"Repo": "sftp:user@server:/srv/repo",
|
||||
"Password": "secret",
|
||||
"PasswordFile": "/root/secret.txt",
|
||||
"Backends": null,
|
||||
"Backup": {
|
||||
"Target": [
|
||||
"/home/user/",
|
||||
"/home/otheruser"
|
||||
],
|
||||
"Excludes": [
|
||||
"*.c"
|
||||
]
|
||||
}
|
||||
}
|
||||
+5
-2
@@ -1,10 +1,13 @@
|
||||
{
|
||||
"Backends": null,
|
||||
"Repo": "",
|
||||
"Password": "",
|
||||
"PasswordFile": "",
|
||||
"Backends": null,
|
||||
"Backup": {
|
||||
"Target": [
|
||||
"foo",
|
||||
"/home/user"
|
||||
]
|
||||
],
|
||||
"Excludes": null
|
||||
}
|
||||
}
|
||||
|
||||
+7
-2
@@ -1,10 +1,15 @@
|
||||
{
|
||||
"Repo": "test",
|
||||
"Password": "",
|
||||
"PasswordFile": "",
|
||||
"Backends": {
|
||||
"test": {
|
||||
"Backend": "local",
|
||||
"Path": "/foo/bar/baz"
|
||||
}
|
||||
},
|
||||
"Repo": "test",
|
||||
"Backup": null
|
||||
"Backup": {
|
||||
"Target": null,
|
||||
"Excludes": null
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user