mirror of
https://github.com/containers/podman.git
synced 2025-12-01 02:27:13 +08:00
also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
386 B
Go
17 lines
386 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// RunUsingChroot is not supported.
|
|
func RunUsingChroot(spec *specs.Spec, bundlePath, homeDir string, stdin io.Reader, stdout, stderr io.Writer) (err error) {
|
|
return fmt.Errorf("--isolation chroot is not supported on this platform")
|
|
}
|