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