From 6d3a7a0d10a9050b3b40c1245fa1b4472ffa46fe Mon Sep 17 00:00:00 2001 From: lordwelch Date: Fri, 7 Aug 2020 14:46:34 -0700 Subject: [PATCH] Remove sighup --- cmd/sshrimp-agent/unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sshrimp-agent/unix.go b/cmd/sshrimp-agent/unix.go index b349a2d..9007a00 100644 --- a/cmd/sshrimp-agent/unix.go +++ b/cmd/sshrimp-agent/unix.go @@ -7,5 +7,5 @@ import ( ) func init() { - sigs = append(sigs, syscall.SIGTERM, syscall.SIGHUP) + sigs = append(sigs, syscall.SIGTERM) }