summaryrefslogtreecommitdiff
path: root/cmd/podman/machine/machine_unix.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-16 12:32:50 +0200
committerGitHub <noreply@github.com>2022-05-16 12:32:50 +0200
commitcedbbfa543651a13055a1fe093a4d0a2a28ccdfd (patch)
treeb3ba3112906a8234a0b27a2bad331c9cb5e66a6e /cmd/podman/machine/machine_unix.go
parenta87bba317e403c69b38c65958f2121d7e3f8a58e (diff)
parent4ae7161c4c775879b8ff3fbdaa5e93ef732cd5c5 (diff)
downloadpodman-cedbbfa543651a13055a1fe093a4d0a2a28ccdfd.tar.gz
podman-cedbbfa543651a13055a1fe093a4d0a2a28ccdfd.tar.bz2
podman-cedbbfa543651a13055a1fe093a4d0a2a28ccdfd.zip
Merge pull request #14247 from n1hility/machine-event-win-41
[v4.1] Cherry-pick windows machine events
Diffstat (limited to 'cmd/podman/machine/machine_unix.go')
-rw-r--r--cmd/podman/machine/machine_unix.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmd/podman/machine/machine_unix.go b/cmd/podman/machine/machine_unix.go
new file mode 100644
index 000000000..b56d081ec
--- /dev/null
+++ b/cmd/podman/machine/machine_unix.go
@@ -0,0 +1,12 @@
+//go:build linux || aix || android || darwin || dragonfly || freebsd || hurd || illumos || ios || netbsd || openbsd || solaris
+// +build linux aix android darwin dragonfly freebsd hurd illumos ios netbsd openbsd solaris
+
+package machine
+
+import (
+ "os"
+)
+
+func isUnixSocket(file os.DirEntry) bool {
+ return file.Type()&os.ModeSocket != 0
+}