summaryrefslogtreecommitdiff
path: root/pkg/rootless
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/rootless')
-rw-r--r--pkg/rootless/rootless_linux.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkg/rootless/rootless_linux.go b/pkg/rootless/rootless_linux.go
index 6eff25eb9..f76eab0e3 100644
--- a/pkg/rootless/rootless_linux.go
+++ b/pkg/rootless/rootless_linux.go
@@ -268,7 +268,9 @@ func becomeRootInUserNS(pausePid, fileToRead string, fileOutput *os.File) (_ boo
}
if retErr != nil && pid > 0 {
if err := unix.Kill(pid, unix.SIGKILL); err != nil {
- logrus.Errorf("failed to kill %d", pid)
+ if err != unix.ESRCH {
+ logrus.Errorf("failed to cleanup process %d: %v", pid, err)
+ }
}
C.reexec_in_user_namespace_wait(C.int(pid), 0)
}
@@ -394,7 +396,9 @@ func becomeRootInUserNS(pausePid, fileToRead string, fileOutput *os.File) (_ boo
}
if err := unix.Kill(int(pidC), s.(unix.Signal)); err != nil {
- logrus.Errorf("failed to kill %d", int(pidC))
+ if err != unix.ESRCH {
+ logrus.Errorf("failed to propagate signal to child process %d: %v", int(pidC), err)
+ }
}
}
}()