aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/machine/machine_unix.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-01 11:21:42 +0000
committerGitHub <noreply@github.com>2022-07-01 11:21:42 +0000
commit7688c5ac63ae33e3caa7fe00b122f95bf60abdd5 (patch)
tree7ffb2a4ebf1939bff3b80b7b8149e172b698184d /cmd/podman/machine/machine_unix.go
parenta737412eeb523c0fd925572f94dc4a189465e1d0 (diff)
parent5262f7e01d61efb0be10aef18067e8fd3bf80179 (diff)
downloadpodman-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_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
+}