mirror of
https://github.com/containers/podman.git
synced 2025-07-15 03:02:52 +08:00

Podman machine is only intended for amd64 and arm64 architectures, set the correct buildtags so that the `pkg/machine`, `pkg/machine/qemu` and `pkg/machine/libvirt` packages compile correctly. [NO TESTS NEEDED] Fixes #10625 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
18 lines
341 B
Go
18 lines
341 B
Go
// +build amd64,linux arm64,linux amd64,darwin arm64,darwin
|
|
|
|
package libvirt
|
|
|
|
import "github.com/containers/podman/v3/pkg/machine"
|
|
|
|
func (v *MachineVM) Init(name string, opts machine.InitOptions) error {
|
|
return nil
|
|
}
|
|
|
|
func (v *MachineVM) Start(name string) error {
|
|
return nil
|
|
}
|
|
|
|
func (v *MachineVM) Stop(name string) error {
|
|
return nil
|
|
}
|