Files
podman/pkg/machine/applehv/machine.go
Brent Baude 2cc3be7332 RUN-4539: Change podman module paths
The podman module paths are moving from github.com/containers/podman to
go.podman.io/podman.  This will help with future mobility.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2026-04-22 14:02:25 -05:00

25 lines
627 B
Go

//go:build darwin
package applehv
import (
"go.podman.io/podman/v6/pkg/machine/define"
"go.podman.io/podman/v6/pkg/machine/vmconfigs"
)
func (a *AppleHVStubber) Remove(_ *vmconfigs.MachineConfig) ([]string, func() error, error) {
return []string{}, func() error { return nil }, nil
}
func (a *AppleHVStubber) State(mc *vmconfigs.MachineConfig, _ bool) (define.Status, error) {
vmStatus, err := mc.AppleHypervisor.Vfkit.State()
if err != nil {
return "", err
}
return vmStatus, nil
}
func (a *AppleHVStubber) StopVM(mc *vmconfigs.MachineConfig, _ bool) error {
return mc.AppleHypervisor.Vfkit.Stop(false, true)
}