mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 09:25:43 +00:00
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>
10 lines
209 B
Go
10 lines
209 B
Go
package machine
|
|
|
|
import (
|
|
"github.com/containers/podman/v4/pkg/machine"
|
|
"github.com/containers/podman/v4/pkg/machine/wsl"
|
|
)
|
|
|
|
func GetSystemDefaultProvider() machine.Provider {
|
|
return wsl.GetWSLProvider()
|
|
}
|