diff options
author | baude <bbaude@redhat.com> | 2018-07-02 10:25:18 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-02 20:39:16 +0000 |
commit | 767b3ddc433fd57f461fa9866e3e4d47399a6519 (patch) | |
tree | 9a6678f3b1fc5be90946e478ee4df1098026a8ba /vendor/github.com/projectatomic/buildah/run_linux.go | |
parent | d357703e061258a57854df1880e23775dbe717ef (diff) | |
download | podman-767b3ddc433fd57f461fa9866e3e4d47399a6519.tar.gz podman-767b3ddc433fd57f461fa9866e3e4d47399a6519.tar.bz2 podman-767b3ddc433fd57f461fa9866e3e4d47399a6519.zip |
vendor in selinux and buildah for darwin compilation
Signed-off-by: baude <bbaude@redhat.com>
Closes: #1037
Approved by: baude
Diffstat (limited to 'vendor/github.com/projectatomic/buildah/run_linux.go')
-rw-r--r-- | vendor/github.com/projectatomic/buildah/run_linux.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/github.com/projectatomic/buildah/run_linux.go b/vendor/github.com/projectatomic/buildah/run_linux.go new file mode 100644 index 000000000..a7519a092 --- /dev/null +++ b/vendor/github.com/projectatomic/buildah/run_linux.go @@ -0,0 +1,17 @@ +// +build linux + +package buildah + +import ( + "fmt" + "golang.org/x/sys/unix" + "os" +) + +func setChildProcess() error { + if err := unix.Prctl(unix.PR_SET_CHILD_SUBREAPER, uintptr(1), 0, 0, 0); err != nil { + fmt.Fprintf(os.Stderr, "prctl(PR_SET_CHILD_SUBREAPER, 1): %v\n", err) + return err + } + return nil +} |