mirror of
https://github.com/containers/podman.git
synced 2025-09-25 15:55:32 +08:00

Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.32.3 to 1.32.5. - [Release notes](https://github.com/containers/storage/releases) - [Changelog](https://github.com/containers/storage/blob/main/docs/containers-storage-changes.md) - [Commits](https://github.com/containers/storage/compare/v1.32.3...v1.32.5) --- updated-dependencies: - dependency-name: github.com/containers/storage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
25 lines
691 B
Go
25 lines
691 B
Go
// +build darwin
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/containers/buildah/define"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// ContainerDevices is an alias for a slice of github.com/opencontainers/runc/libcontainer/configs.Device structures.
|
|
type ContainerDevices define.ContainerDevices
|
|
|
|
func setChildProcess() error {
|
|
return errors.New("function not supported on non-linux systems")
|
|
}
|
|
|
|
func runUsingRuntimeMain() {}
|
|
|
|
func (b *Builder) Run(command []string, options RunOptions) error {
|
|
return errors.New("function not supported on non-linux systems")
|
|
}
|
|
func DefaultNamespaceOptions() (NamespaceOptions, error) {
|
|
return NamespaceOptions{}, errors.New("function not supported on non-linux systems")
|
|
}
|