From 963cfb58beb5d1a92ba22b0727abc91684fa476a Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Thu, 16 Apr 2020 13:17:33 +0200 Subject: [PATCH] - Fix for posix shell syntax for trap in run_msg.sh test script. --- doc/Changelog | 1 + testcode/run_vm.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index 8f6a5758e..56a454d97 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,7 @@ 16 April 2020: Wouter - Fix help return code in unbound-control-setup script. - Fix for posix shell syntax for trap in nsd-control-setup. + - Fix for posix shell syntax for trap in run_msg.sh test script. 15 April 2020: George - Fix #220: auth-zone section in config may lead to segfault. diff --git a/testcode/run_vm.sh b/testcode/run_vm.sh index d4c2a2e11..d14c63742 100644 --- a/testcode/run_vm.sh +++ b/testcode/run_vm.sh @@ -34,7 +34,7 @@ cleanup() { if test -f "$t.bak"; then mv "$t.bak" "$t"; fi exit 0 } -trap cleanup SIGINT +trap cleanup INT for t in $RUNLIST do -- 2.47.3