mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-03 04:16:03 +02:00
10 lines
139 B
Go
10 lines
139 B
Go
// +build linux
|
|
|
|
package envoy
|
|
|
|
import "syscall"
|
|
|
|
var sysProcAttr = &syscall.SysProcAttr{
|
|
Setpgid: true,
|
|
Pdeathsig: syscall.SIGTERM,
|
|
}
|