Files
Packer-Cn/background_check_openbsd.go
T

14 lines
247 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
package main
import (
"fmt"
)
2019-09-18 10:54:35 -07:00
func checkProcess(currentPID int) (bool, error) {
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
"openbsd")
}