mirror of
https://github.com/containers/podman.git
synced 2025-09-28 17:25:31 +08:00

Switch from projectatomic/buildah to containers/buildah Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
14 lines
354 B
Go
14 lines
354 B
Go
// +build !linux
|
|
|
|
package bind
|
|
|
|
import (
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// SetupIntermediateMountNamespace returns a no-op unmountAll() and no error.
|
|
func SetupIntermediateMountNamespace(spec *specs.Spec, bundlePath string) (unmountAll func() error, err error) {
|
|
stripNoBindOption(spec)
|
|
return func() error { return nil }, nil
|
|
}
|