Merge pull request #11439 from coypoop/libvirt-unused

Remove unused stubs intended to start a machine with libvirt
This commit is contained in:
OpenShift Merge Robot
2021-09-04 15:01:29 +02:00
committed by GitHub
3 changed files with 0 additions and 26 deletions

View File

@ -1,6 +0,0 @@
// +build amd64,linux arm64,linux amd64,darwin arm64,darwin
package libvirt
type MachineVM struct {
}

View File

@ -1,17 +0,0 @@
// +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
}

View File

@ -1,3 +0,0 @@
// +build !amd64 amd64,windows
package libvirt