9bb4b09a04
CI / Lint + build + test (push) Has been cancelled
Post-repair hardware validation pipeline for Proxmox cluster hosts. Go orchestrator + in-image agent + mkosi live image + bundled dnsmasq PXE + SQLite + HTMX/SSE UI + notify registry + janitor + full docs.
13 lines
133 B
Go
13 lines
133 B
Go
//go:build !windows
|
|
|
|
package pxe
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func sighup(p *os.Process) error {
|
|
return p.Signal(syscall.SIGHUP)
|
|
}
|