2940783a9c
## Proposed Changes Adds some improvements I found when playing around with local testnets in #3335: - When trying to kill processes, do not exit on a failure. (If a node fails to start due to a bug, the PID associated with it no longer exists. When trying to tear down the testnets, an error will be raised when it tries that PID and then will not try any PIDs following it. This change means it will continue and tear down the rest of the network. - When starting the testnet, set `ulimit` to a high number. This allows the VCs to import 1000s of validators without running into limitations.
20 lines
290 B
Bash
Executable File
20 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Kill processes
|
|
|
|
set -Euo pipefail
|
|
|
|
# First parameter is the file with
|
|
# one pid per line.
|
|
if [ -f "$1" ]; then
|
|
while read pid
|
|
do
|
|
# handle the case of blank lines
|
|
[[ -n "$pid" ]] || continue
|
|
|
|
echo killing $pid
|
|
kill $pid
|
|
done < $1
|
|
fi
|
|
|
|
|