Hello, I am trying to use the Proxmox backup client in a specific way, to replicate how I use rsync currently using --filter="merge filter.txt" syntax to allow only specific file types to be included in all directories recursively.
Here is an example of my rsync merge filter:
However it seems all 3 of these attempts exclude every file, resulting in an empty backup:
Any help figuring this out would be greatly appreciated
Here is an example of my rsync merge filter:
Code:
+ */
+ **.nfo
- *
However it seems all 3 of these attempts exclude every file, resulting in an empty backup:
Code:
**/*
!**/*.nfo
Code:
**/*
!*.nfo
Code:
*
!*.nfo
Any help figuring this out would be greatly appreciated