mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
85988b33d2
This fixes one issue with Docker running under a grsec kernel, which denies chmod and mknod under chroot. Note, if pivot_root fails it will still fallback to chroot. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
12 lines
192 B
Go
12 lines
192 B
Go
// +build !windows,!linux
|
|
|
|
package chrootarchive
|
|
|
|
import "syscall"
|
|
|
|
func chroot(path string) error {
|
|
if err := syscall.Chroot(path); err != nil {
|
|
return err
|
|
}
|
|
return syscall.Chdir("/")
|
|
}
|