summaryrefslogtreecommitdiff
path: root/cmd/podman/machine/machine_unix.go
diff options
context:
space:
mode:
authorJason T. Greene <jason.greene@redhat.com>2022-06-30 16:12:09 -0500
committerJason T. Greene <jason.greene@redhat.com>2022-06-30 16:21:59 -0500
commit5262f7e01d61efb0be10aef18067e8fd3bf80179 (patch)
tree11a43f8131db000798ebed07f20b645b8d32521e /cmd/podman/machine/machine_unix.go
parent01beba3667851c1dd68d3df1e0aa6bc8cb1ec0eb (diff)
downloadpodman-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_unix.go')
-rw-r--r--cmd/podman/machine/machine_unix.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/podman/machine/machine_unix.go b/cmd/podman/machine/machine_unix.go
index b56d081ec..a2d9b9d8e 100644
--- a/cmd/podman/machine/machine_unix.go
+++ b/cmd/podman/machine/machine_unix.go
@@ -4,9 +4,20 @@
package machine
import (
+ "fmt"
"os"
+
+ "github.com/containers/podman/v4/pkg/rootless"
+ "github.com/spf13/cobra"
)
func isUnixSocket(file os.DirEntry) bool {
return file.Type()&os.ModeSocket != 0
}
+
+func rootlessOnly(cmd *cobra.Command, args []string) error {
+ if !rootless.IsRootless() {
+ return fmt.Errorf("cannot run command %q as root", cmd.CommandPath())
+ }
+ return nil
+}