diff options
author | Andrei Vagin <avagin@google.com> | 2019-01-22 16:45:45 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-22 16:46:42 -0800 |
commit | 5f08f8fd8162fa2fc2ca7b862263081d8d07b206 (patch) | |
tree | df94de296220411b976f5730f71f6495ea1dc650 /runsc/sandbox/sandbox.go | |
parent | ceb3dcfb72fe050bb0d90a7285cd1b56d1b4dfeb (diff) |
Don't bind-mount runsc into a sandbox mntns
PiperOrigin-RevId: 230437407
Change-Id: Id9d8ceeb018aad2fe317407c78c6ee0f4b47aa2b
Diffstat (limited to 'runsc/sandbox/sandbox.go')
-rw-r--r-- | runsc/sandbox/sandbox.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/runsc/sandbox/sandbox.go b/runsc/sandbox/sandbox.go index 53cb464d2..721a49141 100644 --- a/runsc/sandbox/sandbox.go +++ b/runsc/sandbox/sandbox.go @@ -292,10 +292,7 @@ func (s *Sandbox) createSandboxProcess(spec *specs.Spec, conf *boot.Config, bund // starts at 3 because 0, 1, and 2 are taken by stdin/out/err. nextFD := 3 - binPath, err := specutils.BinPath() - if err != nil { - return err - } + binPath := specutils.ExePath cmd := exec.Command(binPath, conf.ToFlags()...) cmd.SysProcAttr = &syscall.SysProcAttr{} |