Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need some help to understand pattern on the following example, as the code does not behave as I understood it from this documentation: https://borgbackup.readthedocs.io/en/stable/usage/help.html#borg-help-patterns
My pattern file: PATTERN.lst:
My goal is to exclude files in any .Trash user directory from the selection.
I launch borgbackup with this command:
And in the output (dry-run), I see that the exclusion did not work, `/vdata/.Trash-15I need some help to understand pattern on the following example, as the code does not behave as I understood it from this documentation: https://borgbackup.readthedocs.io/en/stable/usage/help.html#borg-help-patterns
My pattern file: PATTERN.lst:
My goal is to exclude files in any .Trash user directory from the selection.
I launch borgbackup with this command:
And in the output (dry-run), I see that the exclusion did not work,
/vdata/.Trash-1500
files are included in the backupExecution Ouput:
I do not understand why files inside
/vdata/.Trash-1500
are not excluded.Pattern !
.Trash*
, should prevent the directory to be even analyzed, if I understand it correctly the documentation./vdata/lost+found
should also be explicitly excluded but is still appearing in the output log.I would appreciate a suggestion for a correct pattern.
Regards
Beta Was this translation helpful? Give feedback.
All reactions