1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-07-21 23:31:56 +00:00
Files
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
tendermint/scripts/unsafe_stop_group.sh

10 lines
223 B
Bash
Raw Normal View History

2015-07-16 13:36:27 -07:00
#!/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"