diff options
author | Linus Nordberg <linus@nordu.net> | 2017-02-07 14:41:59 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-02-07 14:41:59 +0100 |
commit | 71cc72d3c5e977355ebb0aa8bcb065a08207ec2f (patch) | |
tree | 1cdb0030b875fae416f45f138c4c85c58afa2ea2 /test/scripts/light-system-test-stop.sh | |
parent | 81292083fab81009ac9b1401947feefd094b9384 (diff) |
Parallelised merge, sth phase.
Diffstat (limited to 'test/scripts/light-system-test-stop.sh')
-rwxr-xr-x | test/scripts/light-system-test-stop.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/scripts/light-system-test-stop.sh b/test/scripts/light-system-test-stop.sh index 0bf4374..2265a34 100755 --- a/test/scripts/light-system-test-stop.sh +++ b/test/scripts/light-system-test-stop.sh @@ -12,6 +12,9 @@ stop_node() { ${top_srcdir}/tools/to_catlfish.py to_erl nodes/${node}/ "init:stop()" } -for node in ${ERLANGNODES}; do - stop_node $(echo $node | tr ':' ' ') +for nodegroup in $FRONTENDNODES $MERGEPRIMARYNODE $STORAGENODES $MERGESECONDARYNODES $SIGNINGNODES; do + for node in $nodegroup; do + echo "starting $node" + stop_node $(echo $node | tr ':' ' ') + done done |