diff --git a/linux/runtime.go b/linux/runtime.go index efb3ff5d7..5a2145dd3 100644 --- a/linux/runtime.go +++ b/linux/runtime.go @@ -434,7 +434,9 @@ func (r *Runtime) getRuntime(ctx context.Context, ns, id string) (*runc.Runc, er return nil, err } return &runc.Runc{ - Command: c.Runtime.Name, + // TODO: until we have a way to store/retrieve the original command + // we can only rely on runc from the default $PATH + Command: runc.DefaultCommand, LogFormat: runc.JSON, PdeathSignal: unix.SIGKILL, Root: filepath.Join(client.RuncRoot, ns),