Skip to content
Snippets Groups Projects
Commit b009e314 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

When tearing down test net, always tear down test net :)

Previously, if the arti process had died or been killed, we wouldn't
reach the point where we called "chutney stop".
parent ec224516
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,9 @@ else
fi
kill -s INT "$pid";
# Tolerate a failure here: even in case the arti process already died
# for some reason, we still want to shut down the chutney network.
kill -s INT "$pid" || true
# wait $pid, but $pid was started by a different process
tail --pid="$pid" -f /dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment