mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
9b045dac02
Sometimes bitcoind takes a while to shutdown. Just kill it. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
282 B
Bash
Executable File
12 lines
282 B
Bash
Executable File
#! /bin/sh -e
|
|
|
|
. `dirname $0`/vars.sh
|
|
|
|
[ ! -f $DATADIR/regtest/bitcoind.pid ] || BITCOIN_PID=`cat $DATADIR/regtest/bitcoind.pid`
|
|
|
|
$CLI stop
|
|
sleep 1 # Make sure socket is closed.
|
|
|
|
# Now make sure it's dead.
|
|
if [ -n "$BITCOIN_PID" ]; then kill -9 $BITCOIN_PID 2>/dev/null || true; fi
|