restic/internal/backend/util/foreground_sysv.go

29 lines
512 B
Go
Raw Normal View History

2022-03-28 22:23:47 +02:00
//go:build aix || solaris
2020-05-24 19:32:19 +02:00
// +build aix solaris
package util
import (
"os/exec"
"syscall"
"github.com/restic/restic/internal/errors"
)
func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
2023-12-06 13:11:55 +01:00
// run the command in its own process group so that SIGINT
// is not sent to it.
cmd.SysProcAttr = &syscall.SysProcAttr{
Setpgid: true,
}
// start the process
err = cmd.Start()
if err != nil {
return nil, errors.Wrap(err, "cmd.Start")
}
bg = func() error { return nil }
return bg, nil
}