2024-07-22 22:19:22 +00:00
|
|
|
Bugfix: Shutdown cleanly when receiving SIGTERM
|
2024-02-19 10:31:48 +00:00
|
|
|
|
2024-07-22 22:19:22 +00:00
|
|
|
Previously, when restic received the SIGTERM signal it would terminate
|
|
|
|
immediately, skipping cleanup and potentially causing issues like stale locks
|
|
|
|
being left behind. This primarily effected containerized restic invocations
|
|
|
|
that use SIGTERM, but could also be triggered via a simple `killall restic`.
|
2024-02-19 10:31:48 +00:00
|
|
|
|
2024-07-22 22:19:22 +00:00
|
|
|
This has now been fixed, such that restic shuts down cleanly when receiving
|
|
|
|
the SIGTERM signal.
|
2024-02-19 10:31:48 +00:00
|
|
|
|
|
|
|
https://github.com/restic/restic/pull/4703
|