mirror of
https://github.com/openfaas/faasd.git
synced 2025-07-11 00:03:35 +00:00
Security fix - containerd to 1.7.27
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
Makefilemodules.txt
docs
go.modgo.sumhack
vendor
github.com
containerd
containerd
.golangci.yml.mailmapBUILDING.mdMakefileProtobuild.tomlVagrantfilenamespaces.gotask.gotask_opts.gotask_opts_unix.gotransfer.go
api
runtime
services
containers
content
diff
events
images
introspection
leases
namespaces
sandbox
snapshots
streaming
tasks
transfer
version
types
archive
client.gocontainer.gocontainer_checkpoint_opts.gocontainer_opts.gocontainer_opts_unix.gocontainerd.servicecontainerstore.gocontent
diff
proxy
errdefs
events.goevents
exchange
filters
identifiers
image.goimage_store.goimages
import.golabels
leases
proxy
namespaces
oci
pkg
unpack
plugin
process.gopull.goremotes
docker
authorizer.gofetcher.gohttpreadseeker.gopusher.goresolver.goresolver_unix.goresolver_windows.go
handlers.goschema1
status.gorootfs
runtime
v2
runc
options
sandbox
services
introspection
snapshots
proxy
version
continuity
devices
fs
copy.gocopy_irregular_unix.gocopy_linux.gocopy_nondarwin.gocopy_unix.godiff.godiff_linux.godiff_nonlinux.godiff_unix.godiff_windows.godir.godtype_linux.godu_unix.godu_windows.gohardlink_unix.gomagic_linux.gostat_darwinbsd.gostat_unix.gostat_windows.goutimesnanoat.go
sysx
errdefs
ttrpc
go-logr
google.golang.org
protobuf
encoding
internal
descfmt
descopts
editiondefaults
editionssupport
encoding
errors
filedesc
filetype
genid
impl
api_export.gocheckinit.gocodec_extension.gocodec_field.gocodec_map.gocodec_message.gocodec_messageset.gocodec_reflect.gocodec_unsafe.goconvert.goconvert_list.goconvert_map.goencode.goequal.goextension.golegacy_enum.golegacy_extension.golegacy_file.golegacy_message.gomessage.gomessage_reflect.gomessage_reflect_gen.gopointer_reflect.gopointer_unsafe.go
order
strs
version
proto
reflect
protodesc
protoreflect
methods.goproto.gosource_gen.gotype.govalue_pure.govalue_union.govalue_unsafe_go120.govalue_unsafe_go121.go
protoregistry
runtime
protoiface
types
descriptorpb
gofeaturespb
known
anypb
durationpb
emptypb
fieldmaskpb
timestamppb
4
vendor/github.com/containerd/continuity/fs/copy_linux.go
generated
vendored
4
vendor/github.com/containerd/continuity/fs/copy_linux.go
generated
vendored
@ -17,6 +17,7 @@
|
||||
package fs
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"os"
|
||||
"syscall"
|
||||
@ -64,6 +65,9 @@ func copyFileInfo(fi os.FileInfo, src, name string) error {
|
||||
func copyXAttrs(dst, src string, excludes map[string]struct{}, errorHandler XAttrErrorHandler) error {
|
||||
xattrKeys, err := sysx.LListxattr(src)
|
||||
if err != nil {
|
||||
if errors.Is(err, unix.ENOTSUP) {
|
||||
return nil
|
||||
}
|
||||
e := fmt.Errorf("failed to list xattrs on %s: %w", src, err)
|
||||
if errorHandler != nil {
|
||||
e = errorHandler(dst, src, "", e)
|
||||
|
Reference in New Issue
Block a user