aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/machine/platform.go
diff options
context:
space:
mode:
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()
+}