mirror of
https://github.com/containers/podman.git
synced 2025-10-15 18:23:30 +08:00

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>
15 lines
374 B
Go
15 lines
374 B
Go
//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")
|
|
}
|