Implement container signal

This commit is contained in:
Michael Crosby 2015-11-10 13:44:35 -08:00
parent a2ddcc2232
commit d34d482a5f
7 changed files with 119 additions and 14 deletions

View file

@ -8,6 +8,7 @@ var (
ErrBundleNotFound = errors.New("containerd: bundle not found")
ErrContainerNotFound = errors.New("containerd: container not found")
ErrContainerExists = errors.New("containerd: container already exists")
ErrProcessNotFound = errors.New("containerd: processs not found for container")
// Internal errors
errShutdown = errors.New("containerd: supervisor is shutdown")