mirror of
https://github.com/octoleo/restic.git
synced 2024-11-16 10:05:25 +00:00
96311d1a2b
This does come without xattr/fuse support at this point. NB: not hooking up the integration tests as restic won't compile without cgo with Go < 1.10.
23 lines
369 B
Go
23 lines
369 B
Go
// +build !windows,!darwin,!freebsd,!netbsd,!openbsd,!dragonfly,!solaris
|
|
|
|
package restic
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/restic/restic/internal/debug"
|
|
)
|
|
|
|
func init() {
|
|
c := make(chan os.Signal)
|
|
signal.Notify(c, syscall.SIGUSR1)
|
|
go func() {
|
|
for s := range c {
|
|
debug.Log("Signal received: %v\n", s)
|
|
forceUpdateProgress <- true
|
|
}
|
|
}()
|
|
}
|