4e9241
From bc5be3ca10cd4c147955fadd2586b5dd8ad0eeea Mon Sep 17 00:00:00 2001
4e9241
From: Matthew Heon <mheon@redhat.com>
4e9241
Date: Thu, 24 Sep 2020 10:42:13 -0400
4e9241
Subject: [PATCH] Fix https://bugzilla.redhat.com/show_bug.cgi?id=1882267
4e9241
4e9241
Signed-off-by: Matthew Heon <mheon@redhat.com>
4e9241
---
4e9241
 cmd/podman/sigproxy.go | 2 +-
4e9241
 1 file changed, 1 insertion(+), 1 deletion(-)
4e9241
4e9241
diff --git a/cmd/podman/sigproxy.go b/cmd/podman/sigproxy.go
4e9241
index 16861bad04..92d7f4e4a9 100644
4e9241
--- a/cmd/podman/sigproxy.go
4e9241
+++ b/cmd/podman/sigproxy.go
4e9241
@@ -19,7 +19,7 @@ func ProxySignals(ctr *libpod.Container) {
4e9241
 		for s := range sigBuffer {
4e9241
 			// Ignore SIGCHLD and SIGPIPE - these are mostly likely
4e9241
 			// intended for the podman command itself.
4e9241
-			if s == signal.SIGCHLD || s == signal.SIGPIPE {
4e9241
+			if s == syscall.SIGCHLD || s == syscall.SIGPIPE || s == syscall.SIGURG {
4e9241
 				continue
4e9241
 			}
4e9241