f4a7b44342
This new collection of commands supports initializing a local
engine using containerd, updating that engine, and activating
the EE product
Signed-off-by: Daniel Hiltgen <daniel.hiltgen@docker.com>
Upstream-commit: fd2f1b3b66
Component: cli
13 lines
151 B
Go
13 lines
151 B
Go
// +build !windows
|
|
|
|
package containerizedengine
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
var (
|
|
// SIGKILL maps to unix.SIGKILL
|
|
SIGKILL = unix.SIGKILL
|
|
)
|