mirror of
https://github.com/containers/podman.git
synced 2025-12-06 21:57:50 +08:00
vendor: update c/{buildah,common,image,storage}
Update to latest main to see if everything passes in preparation for the first 5.3 release candidate. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
14
vendor/github.com/containers/storage/userns_unsupported.go
generated
vendored
Normal file
14
vendor/github.com/containers/storage/userns_unsupported.go
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
//go:build !linux
|
||||
|
||||
package storage
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/containers/storage/pkg/idtools"
|
||||
"github.com/containers/storage/types"
|
||||
)
|
||||
|
||||
func (s *store) getAutoUserNS(_ *types.AutoUserNsOptions, _ *Image, _ rwLayerStore, _ []roLayerStore) ([]idtools.IDMap, []idtools.IDMap, error) {
|
||||
return nil, nil, errors.New("user namespaces are not supported on this platform")
|
||||
}
|
||||
Reference in New Issue
Block a user