mirror of
https://github.com/restic/restic.git
synced 2025-02-22 19:18:25 +00:00
Merge pull request #5180 from vmlemon/master
Enable xattr support, on NetBSD 10+
This commit is contained in:
commit
de3acd7937
6
changelog/unreleased/issue-5174
Normal file
6
changelog/unreleased/issue-5174
Normal file
@ -0,0 +1,6 @@
|
||||
Enhancement: Enable xattr support, on NetBSD 10+
|
||||
|
||||
Restic now supports backing up, and restoring extended attributes, on systems running NetBSD 10, or later.
|
||||
|
||||
https://github.com/restic/restic/issues/5174
|
||||
https://github.com/restic/restic/pull/5180
|
@ -1,5 +1,5 @@
|
||||
//go:build aix || dragonfly || netbsd || openbsd
|
||||
// +build aix dragonfly netbsd openbsd
|
||||
//go:build aix || dragonfly || openbsd
|
||||
// +build aix dragonfly openbsd
|
||||
|
||||
package fs
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
//go:build darwin || freebsd || linux || solaris
|
||||
// +build darwin freebsd linux solaris
|
||||
//go:build darwin || freebsd || netbsd || linux || solaris
|
||||
// +build darwin freebsd netbsd linux solaris
|
||||
|
||||
package fs
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
//go:build darwin || freebsd || linux || solaris || windows
|
||||
// +build darwin freebsd linux solaris windows
|
||||
//go:build darwin || freebsd || netbsd || linux || solaris || windows
|
||||
// +build darwin freebsd netbsd linux solaris windows
|
||||
|
||||
package fs
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
//go:build darwin || freebsd || linux || solaris
|
||||
// +build darwin freebsd linux solaris
|
||||
//go:build darwin || freebsd || netbsd || linux || solaris
|
||||
// +build darwin freebsd netbsd linux solaris
|
||||
|
||||
package fs
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user