mirror of
https://github.com/mudler/luet.git
synced 2025-08-28 11:50:37 +00:00
Optionally add back privileged extraction which can be enabled with LUET_PRIVILEGED_EXTRACT=true Signed-off-by: Ettore Di Giacinto <mudler@sabayon.org>
12 lines
148 B
Go
12 lines
148 B
Go
// +build !windows
|
|
|
|
package appcontext
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
var terminationSignals = []os.Signal{unix.SIGTERM, unix.SIGINT}
|