mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-20 00:10:04 -05:00
10 lines
176 B
Go
10 lines
176 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func checkProcess(currentPID int) (bool, error) {
|
|
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
|
|
"openbsd")
|
|
}
|