github.com/hashicorp/packer@v1.14.3/background_check_openbsd.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: BUSL-1.1 3 4 package main 5 6 import ( 7 "fmt" 8 ) 9 10 func checkProcess(currentPID int) (bool, error) { 11 return false, fmt.Errorf("cannot determine if process is backgrounded in " + 12 "openbsd") 13 }