]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_unsupported.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / xattrs_unsupported.go
CommitLineData
9b12e4fe
JC
1// +build !linux
2
3package system
4
5// Lgetxattr is not supported on platforms other than linux.
6func Lgetxattr(path string, attr string) ([]byte, error) {
7 return nil, ErrNotSupportedPlatform
8}
9
10// Lsetxattr is not supported on platforms other than linux.
11func Lsetxattr(path string, attr string, data []byte, flags int) error {
12 return ErrNotSupportedPlatform
13}