mirror of
https://github.com/containers/podman.git
synced 2025-11-13 01:29:06 +08:00
update buildah to latest and use new network stack
Make sure buildah uses the new network stack. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
7
vendor/github.com/containers/buildah/run_unsupported.go
generated
vendored
7
vendor/github.com/containers/buildah/run_unsupported.go
generated
vendored
@@ -3,6 +3,8 @@
|
||||
package buildah
|
||||
|
||||
import (
|
||||
nettypes "github.com/containers/common/libnetwork/types"
|
||||
"github.com/containers/storage"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
@@ -18,3 +20,8 @@ func (b *Builder) Run(command []string, options RunOptions) error {
|
||||
func DefaultNamespaceOptions() (NamespaceOptions, error) {
|
||||
return NamespaceOptions{}, errors.New("function not supported on non-linux systems")
|
||||
}
|
||||
|
||||
// getNetworkInterface creates the network interface
|
||||
func getNetworkInterface(store storage.Store, cniConfDir, cniPluginPath string) (nettypes.ContainerNetwork, error) {
|
||||
return nil, errors.New("function not supported on non-linux systems")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user