Setup the server as subreaper for child processes
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
parent
7c5fccd7a8
commit
fc3b7b5aae
1 changed files with 9 additions and 0 deletions
|
@ -1,7 +1,10 @@
|
||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"github.com/mrunalp/ocid/oci"
|
"github.com/mrunalp/ocid/oci"
|
||||||
|
"github.com/mrunalp/ocid/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -17,6 +20,12 @@ type Server struct {
|
||||||
|
|
||||||
// New creates a new Server with options provided
|
// New creates a new Server with options provided
|
||||||
func New(runtimePath, sandboxDir, containerDir string) (*Server, error) {
|
func New(runtimePath, sandboxDir, containerDir string) (*Server, error) {
|
||||||
|
// TODO: This will go away later when we have wrapper process or systemd acting as
|
||||||
|
// subreaper.
|
||||||
|
if err := utils.SetSubreaper(1); err != nil {
|
||||||
|
return nil, fmt.Errorf("failed to set server as subreaper: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
r, err := oci.New(runtimePath, containerDir)
|
r, err := oci.New(runtimePath, containerDir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in a new issue