mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
7acea2a243
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
23 lines
438 B
Go
23 lines
438 B
Go
package runc
|
|
|
|
import (
|
|
"context"
|
|
"os/exec"
|
|
"syscall"
|
|
)
|
|
|
|
func (r *Runc) command(context context.Context, args ...string) *exec.Cmd {
|
|
command := r.Command
|
|
if command == "" {
|
|
command = DefaultCommand
|
|
}
|
|
cmd := exec.CommandContext(context, command, append(r.args(), args...)...)
|
|
cmd.SysProcAttr = &syscall.SysProcAttr{
|
|
Setpgid: r.Setpgid,
|
|
}
|
|
if r.PdeathSignal != 0 {
|
|
cmd.SysProcAttr.Pdeathsig = r.PdeathSignal
|
|
}
|
|
|
|
return cmd
|
|
}
|