From 7014d050d9738ae5ed8cd92e19a0cbb91d703025 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 13 Sep 2020 01:31:08 +0100 Subject: [PATCH] run_tests: make travis happy, use signal nr instead of name --- tests/scripts/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index b721414..3cb139a 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -112,8 +112,8 @@ start_tinyproxy() { reload_config() { echo -n "signaling tinyproxy to reload config..." pid=$(cat $TINYPROXY_PID_FILE) - kill -s SIGHUP $pid - echo + #1: SIGHUP + kill -1 $pid && echo "ok" || echo "fail" } stop_tinyproxy() {