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:
Julian Rother 2024-08-18 22:50:19 +02:00
parent 7a23ece9b6
commit 1226688b22
No known key found for this signature in database
GPG key ID: 8F9B6AE9BAAE4899

View file

@ -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: