From 80744c644135899a6dcc9fbe1b421dc08fc79802 Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Wed, 27 Apr 2022 16:56:48 -0400 Subject: 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 --- cmd/podman/machine/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman/machine/start.go') diff --git a/cmd/podman/machine/start.go b/cmd/podman/machine/start.go index 56acb09cb..69d67596e 100644 --- a/cmd/podman/machine/start.go +++ b/cmd/podman/machine/start.go @@ -41,7 +41,7 @@ func start(cmd *cobra.Command, args []string) error { vmName = args[0] } - provider := getSystemDefaultProvider() + provider := GetSystemDefaultProvider() vm, err = provider.LoadVMByName(vmName) if err != nil { return err -- cgit v1.2.3-54-g00ecf