From 96f6200808cb08064ba2cdfe6c1b866f60338ebe Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 10 Nov 2024 19:52:12 +0100 Subject: [PATCH] Remove SIGKILL from the trap, as SIGKILL cannot be trapped. --- Dell_iDRAC_fan_controller.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dell_iDRAC_fan_controller.sh b/Dell_iDRAC_fan_controller.sh index 21df675..bdad2a4 100644 --- a/Dell_iDRAC_fan_controller.sh +++ b/Dell_iDRAC_fan_controller.sh @@ -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