Add changelog for SIGTERM bugfix.

Signed-off-by: Brian Harring <ferringb@gmail.com>
This commit is contained in:
Brian Harring 2024-02-19 11:31:48 +01:00
parent 30e979d252
commit b41107dcaf
No known key found for this signature in database
GPG Key ID: AAF3CB6981BFAE49
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
Bugfix: Shutdown cleanly when SIGTERM is received
Prior, if restic received SIGTERM it'd just immediately terminate skipping
cleanup- resulting in potential issues like stale locks being left behind.
This primarily effected containerized restic invocations- they use SIGTERM-
but this could be triggered via a simple `killall restic` in addition.
https://github.com/restic/restic/pull/4703