diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-01 11:21:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 11:21:42 +0000 |
commit | 7688c5ac63ae33e3caa7fe00b122f95bf60abdd5 (patch) | |
tree | 7ffb2a4ebf1939bff3b80b7b8149e172b698184d /cmd/podman/machine/machine_windows.go | |
parent | a737412eeb523c0fd925572f94dc4a189465e1d0 (diff) | |
parent | 5262f7e01d61efb0be10aef18067e8fd3bf80179 (diff) | |
download | podman-7688c5ac63ae33e3caa7fe00b122f95bf60abdd5.tar.gz podman-7688c5ac63ae33e3caa7fe00b122f95bf60abdd5.tar.bz2 podman-7688c5ac63ae33e3caa7fe00b122f95bf60abdd5.zip |
Merge pull request #14794 from n1hility/fix-win
Fix podman machine on Windows
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 +} |