diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-04 15:01:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 15:01:29 +0200 |
commit | bbd03df3e120998f57393c25c14ca4fe15f5aec3 (patch) | |
tree | 1e621c4ba648d97cd96b2c67ef0ac9209986115b /pkg/machine/libvirt/machine.go | |
parent | af58cb15d2aa46609fc7231647af09f808ba6c1c (diff) | |
parent | 274a3bc80b933a9b0e194c007f24bba9856fbd03 (diff) | |
download | podman-bbd03df3e120998f57393c25c14ca4fe15f5aec3.tar.gz podman-bbd03df3e120998f57393c25c14ca4fe15f5aec3.tar.bz2 podman-bbd03df3e120998f57393c25c14ca4fe15f5aec3.zip |
Merge pull request #11439 from coypoop/libvirt-unused
Remove unused stubs intended to start a machine with libvirt
Diffstat (limited to 'pkg/machine/libvirt/machine.go')
-rw-r--r-- | pkg/machine/libvirt/machine.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pkg/machine/libvirt/machine.go b/pkg/machine/libvirt/machine.go deleted file mode 100644 index e1aa1569b..000000000 --- a/pkg/machine/libvirt/machine.go +++ /dev/null @@ -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 -} |