Make sure restic does not scan /proc (and fail if files disappear there)
This should have been prevented by --one-file-system, but restic has a bug. So we need this workaround.
This commit is contained in:
parent
7a23ece9b6
commit
1226688b22
1 changed files with 3 additions and 0 deletions
|
|
@ -50,6 +50,9 @@ backups:
|
|||
'/var/lib/php/sessions/*': true
|
||||
'/root/.ansible/*': true
|
||||
'/var/log/**/*.gz': true
|
||||
# Workaround for https://github.com/restic/restic/issues/3366
|
||||
'/proc': true
|
||||
'/dev': true
|
||||
include_files:
|
||||
'/': true
|
||||
hooks:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue