Replies: 1 comment 5 replies
-
Borg tries to avoid including behaviour addressing:
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've spent a week trying to diagnose a problem with my nightly backup script, which uses Borgmatic. This has been working for over two years without problems, and with no recent changes, yet it was suddenly failing to terminate, i.e. I would look at the logs in the morning and find that Borg was still running, though its normal running time should be in the order of 5-10 minutes. On closer examination, and using the maximum logging verbosity, I found that Borg was constantly examining files under /proc and /sys, even though my Borgmatic configuration doesn't list / as a filesystem to be backed up.
I decided to explicitly exclude /proc, /sys, /tmp and /dev in the --patterns-from file, and now the script works.
Is this a recent change to Borg that I should have been aware of? I'm using Borg version 1.2.2 on Fedora 36.
Do people think it's reasonable for Borg to look at those system directories unless told otherwise? I'm finding it hard to come up with a use case for that which would make sense.
Beta Was this translation helpful? Give feedback.
All reactions