mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Add 'make undeploy' target to kill all running nodes
Problem: previously, in order to completely shut down a running localnet, users had to attach to their 'localnet' screen and kill (^C) each process, then quit and kill the entire screen session. Solution: this change introduces an 'undeploy' target that automates sending the ^C to each screen window followed by sending screen's 'kill' command to any remaining windows, thus killing the entire 'localnet' screen session. The result is that users may now run the following two commands in succession any number of times to bring their localnet up and down (to 'deploy' and 'undeploy' their localnet). # bring up localnet $ make deploy # use localnet to test, develop, etc... # bring down localnet $ make undeploy
This commit is contained in:
parent
234c228df8
commit
ed40afb151
8
Makefile
8
Makefile
@ -168,6 +168,14 @@ deploy: setup
|
||||
# generate a block to ensure Bisq nodes get dao-synced
|
||||
make block
|
||||
|
||||
# Undeploy a running localnet by killing all Bitcoin and Bisq
|
||||
# node processes, then killing the localnet screen session altogether
|
||||
undeploy:
|
||||
# kill all Bitcoind and Bisq nodes running in screen windows
|
||||
screen -S localnet -X at "#" stuff "^C"
|
||||
# quit all screen windows which results in killing the session
|
||||
screen -S localnet -X at "#" kill
|
||||
|
||||
bitcoind: .localnet
|
||||
bitcoind \
|
||||
-regtest \
|
||||
|
Loading…
Reference in New Issue
Block a user