diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-06-30 16:12:09 -0500 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-06-30 16:21:59 -0500 |
commit | 5262f7e01d61efb0be10aef18067e8fd3bf80179 (patch) | |
tree | 11a43f8131db000798ebed07f20b645b8d32521e /cmd/podman/machine/machine_windows.go | |
parent | 01beba3667851c1dd68d3df1e0aa6bc8cb1ec0eb (diff) | |
download | podman-5262f7e01d61efb0be10aef18067e8fd3bf80179.tar.gz podman-5262f7e01d61efb0be10aef18067e8fd3bf80179.tar.bz2 podman-5262f7e01d61efb0be10aef18067e8fd3bf80179.zip |
Fix podman machine on Windows
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'cmd/podman/machine/machine_windows.go')
-rw-r--r-- | cmd/podman/machine/machine_windows.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/podman/machine/machine_windows.go b/cmd/podman/machine/machine_windows.go index ffd5d8827..bf1240868 100644 --- a/cmd/podman/machine/machine_windows.go +++ b/cmd/podman/machine/machine_windows.go @@ -3,9 +3,18 @@ package machine import ( "os" "strings" + + "github.com/spf13/cobra" ) func isUnixSocket(file os.DirEntry) bool { // Assume a socket on Windows, since sock mode is not supported yet https://github.com/golang/go/issues/33357 return !file.Type().IsDir() && strings.HasSuffix(file.Name(), ".sock") } + +func rootlessOnly(cmd *cobra.Command, args []string) error { + // Rootless is not relevant on Windows. In the future rootless.IsRootless + // could be switched to return true on Windows, and other codepaths migrated + + return nil +} |