2018-03-13 20:09:16 +00:00
|
|
|
package backend
|
2018-01-17 22:02:47 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os/exec"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/errors"
|
|
|
|
)
|
|
|
|
|
2018-03-13 20:09:16 +00:00
|
|
|
// StartForeground runs cmd in the foreground, by temporarily switching to the
|
2018-01-17 22:02:47 +00:00
|
|
|
// new process group created for cmd. The returned function `bg` switches back
|
|
|
|
// to the previous process group.
|
2018-03-13 21:30:51 +00:00
|
|
|
func StartForeground(cmd *exec.Cmd) (bg func() error, err error) {
|
2018-01-17 22:02:47 +00:00
|
|
|
// just start the process and hope for the best
|
|
|
|
err = cmd.Start()
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "cmd.Start")
|
|
|
|
}
|
|
|
|
|
|
|
|
bg = func() error { return nil }
|
|
|
|
return bg, nil
|
|
|
|
}
|