From b6c7d7c660f2d5b7b099bd71feee37a2731bf889 Mon Sep 17 00:00:00 2001 From: arnova Date: Wed, 13 Feb 2019 07:58:00 +0100 Subject: [PATCH] changed: Remove jobs-file in jobs_process_terminate_check(), just in case --- bin/arno-iptables-firewall | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/arno-iptables-firewall b/bin/arno-iptables-firewall index d3a315de..d2aea7a7 100755 --- a/bin/arno-iptables-firewall +++ b/bin/arno-iptables-firewall @@ -5042,6 +5042,9 @@ jobs_process_terminate_check() return 1 fi + # Remove possible leftover jobs file (unlikely) + rm -f "$JOBS_FILE" + return 0 }