From 4065c394a3b0b311aff7cd8d0ee448af20361c85 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 15 Jun 2021 15:39:30 -0700 Subject: [PATCH] exec: rm --no-subreaper flag This was removed from runc exec by commit f61c6e413f0 about 5 years ago, so it's time to remove it entirely. Signed-off-by: Kir Kolyshkin --- exec.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/exec.go b/exec.go index 6053ea970..7514b58e1 100644 --- a/exec.go +++ b/exec.go @@ -84,11 +84,6 @@ following will output a list of processes running in the container: Value: &cli.StringSlice{}, Usage: "add a capability to the bounding set for the process", }, - cli.BoolFlag{ - Name: "no-subreaper", - Usage: "disable the use of the subreaper used to reap reparented processes", - Hidden: true, - }, cli.IntFlag{ Name: "preserve-fds", Usage: "Pass N additional file descriptors to the container (stdio + $LISTEN_FDS + N in total)",