Skip to content
Snippets Groups Projects
Verified Commit 1226688b authored by Julian's avatar Julian
Browse files

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.
parent 7a23ece9
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,9 @@ backups: ...@@ -50,6 +50,9 @@ backups:
'/var/lib/php/sessions/*': true '/var/lib/php/sessions/*': true
'/root/.ansible/*': true '/root/.ansible/*': true
'/var/log/**/*.gz': true '/var/log/**/*.gz': true
# Workaround for https://github.com/restic/restic/issues/3366
'/proc': true
'/dev': true
include_files: include_files:
'/': true '/': true
hooks: hooks:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment