From 3f30eb51dd1d8c8ab5e258bb2e9d49ac46615a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 25 Jul 2022 13:18:17 +0200 Subject: [PATCH] launch_local_testnet: show processes killed by pkill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I want to verify that processes being killed are not from other parallel jobs. Signed-off-by: Jakub SokoĊ‚owski --- scripts/launch_local_testnet.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/launch_local_testnet.sh b/scripts/launch_local_testnet.sh index 1c608fa15..39f2bb855 100755 --- a/scripts/launch_local_testnet.sh +++ b/scripts/launch_local_testnet.sh @@ -581,14 +581,14 @@ cleanup() { for proc in "${PROCS_TO_KILL[@]}" do - pkill -f -P $$ "${proc}" &>/dev/null || true + pkill -f -P $$ "${proc}" || true done sleep 2 for proc in "${PROCS_TO_KILL[@]}" do - pkill -f -9 -P $$ "${proc}" &>/dev/null || true + pkill -f -9 -P $$ "${proc}" || true done # Delete all binaries we just built, because these are unusable outside this