Merge pull request #1649 from jasperla/solaris

Minimal set of patches to get restic working on Solaris
This commit is contained in:
Alexander Neumann
2018-03-05 20:00:17 +01:00
18 changed files with 71 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
package sftp
import (
"os/exec"
"syscall"
"github.com/restic/restic/internal/errors"
)
func startForeground(cmd *exec.Cmd) (bg func() error, err error) {
// run the command in it's 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
}

View File

@@ -1,3 +1,4 @@
// +build !solaris
// +build !windows
package sftp