mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-14 07:41:19 +00:00
10 lines
175 B
Bash
10 lines
175 B
Bash
|
#! /bin/bash
|
||
|
set -u
|
||
|
|
||
|
N=$1 # number of nodes
|
||
|
|
||
|
N_=$((N-1))
|
||
|
|
||
|
# stop all tendermint
|
||
|
terraforce ssh --user root --ssh-key $HOME/.ssh/id_rsa --machines "[0-$N_]" killall tendermint
|