summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
Diffstat (limited to 'libpod')
-rw-r--r--libpod/oci.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/libpod/oci.go b/libpod/oci.go
index 240f53885..e1c0d1261 100644
--- a/libpod/oci.go
+++ b/libpod/oci.go
@@ -691,15 +691,6 @@ func (r *OCIRuntime) execContainer(c *Container, cmd, capAdd, env []string, tty
logrus.Debugf("Starting runtime %s with following arguments: %v", r.path, args)
execCmd := exec.Command(r.path, args...)
- if rootless.IsRootless() {
- args = append([]string{"--preserve-credentials", "--user=/proc/self/fd/3", r.path}, args...)
- f, err := rootless.GetUserNSForPid(uint(c.state.PID))
- if err != nil {
- return nil, err
- }
- execCmd = exec.Command("nsenter", args...)
- execCmd.ExtraFiles = append(execCmd.ExtraFiles, f)
- }
execCmd.Stdout = os.Stdout
execCmd.Stderr = os.Stderr
execCmd.Stdin = os.Stdin