mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-05 12:45:10 +01:00
14 lines
248 B
Go
14 lines
248 B
Go
// Copyright IBM Corp. 2013, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func checkProcess(currentPID int) (bool, error) {
|
|
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
|
|
"openbsd")
|
|
}
|