packer-cn/background_check_openbsd.go

11 lines
176 B
Go
Raw Normal View History

package main
import (
"fmt"
)
2019-09-18 13:54:35 -04:00
func checkProcess(currentPID int) (bool, error) {
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
"openbsd")
}