TW

Results 2664 comments of TW

I tried to reproduce, but couldn't, it just worked for me as expected: - borg 1.4.0 - client: ubuntu 24.04 with cifs-utils for mount.cifs - server: ubuntu 24.04 with user...

I also tried some of the options seen in your mount output: some were not supported by my mount.cifs, but the ones that were supported did not reproduce the issue....

I am closing this as I can't do more without more information and also it does not look like a borg issue, but rather like a fs issue.

Good idea. A slight problem here might be portability - this should work on all platforms where we support FUSE: - linux - freebsd - macOS For the PR: please...

@RonnyPfannschmidt it would require implementing that, which is not an option until we have multithreading. but assuming that we had that, would we want hash-based exclusion?

If (in the end) you work with a full-path exclude, the `pf:` pattern style is very efficient as it is using a dict internally (not a list, not a regex-match),...

If somebody wants to work on this: As long as we have ddclient versions out there requiring different configs, we should show clearly what the user needs depending on the...

Looks like this comes from borg's filetype dispatcher: ``` tar = tarfile.open(fileobj=tarstream, mode="r|", ignore_zeros=args.ignore_zeros) while True: tarinfo = tar.next() if not tarinfo: break if tarinfo.isreg(): status = tfo.process_file(tarinfo=tarinfo, status="A", type=stat.S_IFREG,...