Remove SIGKILL from the trap, as SIGKILL cannot be trapped.

This commit is contained in:
Ryan 2024-11-10 19:52:12 +01:00 committed by Tigerblue77
parent 6ec7143705
commit 96f6200808

View file

@ -7,7 +7,7 @@
source functions.sh
# Trap the signals for container exit and run graceful_exit function
trap 'graceful_exit' SIGQUIT SIGKILL SIGTERM
trap 'graceful_exit' SIGQUIT SIGTERM
# Prepare, format and define initial variables