mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-21 23:31:56 +00:00
DOCKER
INSTALL
benchmarks
blockchain
cmd
config
consensus
mempool
node
proxy
rpc
scripts
README.md
unsafe_debug_net.sh
unsafe_reset_net.sh
unsafe_start_group.sh
unsafe_stop_group.sh
unsafe_upgrade_barak.sh
unsafe_upgrade_group.sh
state
types
version
.gitignore
LICENSE
Makefile
README.md
Vagrantfile
glide.lock
glide.yaml
10 lines
223 B
Bash
10 lines
223 B
Bash
![]() |
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
|
||
|
printf "Stopping group $1...\n"
|
||
|
sleep 3
|
||
|
|
||
|
debora --group "$1" run -- bash -c "cd \$GOPATH/src/github.com/tendermint/tendermint; killall tendermint; killall logjack"
|
||
|
printf "Done\n"
|