mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 02:46:30 +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,
|
|
}
|