Files
podman/pkg/machine/libvirt/machine.go
Ashley Cui f663857103 Rename podman machine create to init and clean up
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>
2021-03-25 17:45:27 -04:00

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
}