summaryrefslogtreecommitdiff
path: root/cmd/podman/machine/init.go
diff options
context:
space:
mode:
authorAshley Cui <acui@redhat.com>2022-04-27 16:56:48 -0400
committeropenshift-cherrypick-robot <>2022-05-04 18:06:23 +0000
commitd3f406e9f6fe3c33228d0f384f986982640d2f43 (patch)
treea1eee345deaeeca0efedbde48a8ce4d6fe32af16 /cmd/podman/machine/init.go
parentc4357f0f7b7a032908abfab358616d82163eaf9e (diff)
downloadpodman-d3f406e9f6fe3c33228d0f384f986982640d2f43.tar.gz
podman-d3f406e9f6fe3c33228d0f384f986982640d2f43.tar.bz2
podman-d3f406e9f6fe3c33228d0f384f986982640d2f43.zip
podman system reset removed machines incorrectly
podman system reset did not clean up machines fully, leaving some config files, and breaking machines. Now it removes all machines files fully. Signed-off-by: Ashley Cui <acui@redhat.com>
Diffstat (limited to 'cmd/podman/machine/init.go')
-rw-r--r--cmd/podman/machine/init.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/machine/init.go b/cmd/podman/machine/init.go
index 733266b85..6c31f3531 100644
--- a/cmd/podman/machine/init.go
+++ b/cmd/podman/machine/init.go
@@ -118,7 +118,7 @@ func initMachine(cmd *cobra.Command, args []string) error {
vm machine.VM
)
- provider := getSystemDefaultProvider()
+ provider := GetSystemDefaultProvider()
initOpts.Name = defaultMachineName
if len(args) > 0 {
if len(args[0]) > maxMachineNameSize {