diff --git a/oz-daemon/launch.go b/oz-daemon/launch.go index 658eb8d..7d51783 100644 --- a/oz-daemon/launch.go +++ b/oz-daemon/launch.go @@ -39,7 +39,7 @@ func findSandbox(id int) *Sandbox { return nil } */ -const initCloneFlags = syscall.CLONE_NEWNS | syscall.CLONE_NEWIPC | syscall.CLONE_NEWPID | syscall.CLONE_NEWUTS +const initCloneFlags = syscall.CLONE_NEWNS | syscall.CLONE_NEWIPC | syscall.CLONE_NEWPID | syscall.CLONE_NEWUTS | syscall.CLONE_NEWNET func createInitCommand(name, chroot string, uid uint32, display int) *exec.Cmd { cmd := exec.Command(initPath)