mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Rename podman machine create to init because we're initing a VM, not really creating it Wire up CPUs flag Suppress QEMU GUI from popping up when not in debug mode [NO TESTS NEEDED] Signed-off-by: Ashley Cui <acui@redhat.com>
16 lines
280 B
Go
16 lines
280 B
Go
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
|
|
}
|