mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
48a0d83143
Apparently SMB/CIFS on Linux/macOS returns somewhat random errnos when trying to sync a windows share which does not support calling fsync for a directory.
38 lines
598 B
Go
38 lines
598 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package local
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"syscall"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
|
)
|
|
|
|
// fsyncDir flushes changes to the directory dir.
|
|
func fsyncDir(dir string) error {
|
|
d, err := os.Open(dir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = d.Sync()
|
|
if errors.Is(err, syscall.ENOTSUP) || errors.Is(err, syscall.ENOENT) || errors.Is(err, syscall.EINVAL) {
|
|
err = nil
|
|
}
|
|
|
|
cerr := d.Close()
|
|
if err == nil {
|
|
err = cerr
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
// set file to readonly
|
|
func setFileReadonly(f string, mode os.FileMode) error {
|
|
return fs.Chmod(f, mode&^0222)
|
|
}
|