aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/machine/platform.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-12-26 13:26:07 +0100
committerGitHub <noreply@github.com>2021-12-26 13:26:07 +0100
commite06631d6c22f4d5b7a62f70ccdf623379a9d5fe7 (patch)
tree54fe3a08b58b9129f87e51cd1b8fcd938f582777 /cmd/podman/machine/platform.go
parent73a54ea54d0a1b4ccaa2a0e23c678e5b7c1d5c37 (diff)
parent803defbe509af1902a1fdc2ed7f41b49ebd241f6 (diff)
downloadpodman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.tar.gz
podman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.tar.bz2
podman-e06631d6c22f4d5b7a62f70ccdf623379a9d5fe7.zip
Merge pull request #12503 from n1hility/wsl-machine
Introduce Windows WSL implementation of podman machine
Diffstat (limited to 'cmd/podman/machine/platform.go')
-rw-r--r--cmd/podman/machine/platform.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/podman/machine/platform.go b/cmd/podman/machine/platform.go
new file mode 100644
index 000000000..fc3186205
--- /dev/null
+++ b/cmd/podman/machine/platform.go
@@ -0,0 +1,12 @@
+// +build amd64,!windows arm64,!windows
+
+package machine
+
+import (
+ "github.com/containers/podman/v3/pkg/machine"
+ "github.com/containers/podman/v3/pkg/machine/qemu"
+)
+
+func getSystemDefaultProvider() machine.Provider {
+ return qemu.GetQemuProvider()
+}