summaryrefslogtreecommitdiff
path: root/sigtrap_posix.go
diff options
context:
space:
mode:
Diffstat (limited to 'sigtrap_posix.go')
-rw-r--r--sigtrap_posix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sigtrap_posix.go b/sigtrap_posix.go
index a8e4cec..0e4dda3 100644
--- a/sigtrap_posix.go
+++ b/sigtrap_posix.go
@@ -35,12 +35,12 @@ func trapSignalsPosix() {
switch sig {
case syscall.SIGQUIT:
Log().Info("quitting process immediately", zap.String("signal", "SIGQUIT"))
- certmagic.CleanUpOwnLocks() // try to clean up locks anyway, it's important
+ certmagic.CleanUpOwnLocks(Log()) // try to clean up locks anyway, it's important
os.Exit(ExitCodeForceQuit)
case syscall.SIGTERM:
Log().Info("shutting down apps then terminating", zap.String("signal", "SIGTERM"))
- gracefulStop("SIGTERM")
+ exitProcessFromSignal("SIGTERM")
case syscall.SIGUSR1:
Log().Info("not implemented", zap.String("signal", "SIGUSR1"))