overseer/sys_unsupported.go

22 lines
285 B
Go
Raw Normal View History

2016-04-01 05:12:51 +00:00
// +build !linux,!darwin,!windows
2016-02-08 13:20:50 +00:00
package overseer
2016-02-08 13:20:50 +00:00
import (
"errors"
"os"
)
var (
supported = false
uid = 0
gid = 0
SIGUSR1 = os.Interrupt
SIGUSR2 = os.Interrupt
SIGTERM = os.Kill
)
func move(dst, src string) error {
return errors.New("Not supported")
}