mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-22 22:59:46 -04:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
26 lines
503 B
Go
26 lines
503 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !openbsd
|
|
// +build !openbsd
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/shirou/gopsutil/process"
|
|
)
|
|
|
|
func checkProcess(currentPID int) (bool, error) {
|
|
myProc, err := process.NewProcess(int32(currentPID))
|
|
if err != nil {
|
|
return false, fmt.Errorf("Process check error: %s", err)
|
|
}
|
|
bg, err := myProc.Background()
|
|
if err != nil {
|
|
return bg, fmt.Errorf("Process background check error: %s", err)
|
|
}
|
|
|
|
return bg, nil
|
|
}
|