mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
aa1a0e31fd
Also, fix the case where we didn't use --network with EXPOSE_TCP, as reported by @theborakompanioni: ``` I get Wrong network! Our Bitcoin backend is running on 'regtest', but we expect 'main'. with LIGHTNINGD_NETWORK := regtest when param --network is not provided. ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
28 lines
804 B
Bash
Executable File
28 lines
804 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
: "${EXPOSE_TCP:=false}"
|
|
|
|
networkdatadir="${LIGHTNINGD_DATA}/${LIGHTNINGD_NETWORK}"
|
|
|
|
set -m
|
|
lightningd --network="${LIGHTNINGD_NETWORK}" "$@" &
|
|
|
|
echo "Core-Lightning starting"
|
|
while read -r i; do if [ "$i" = "lightning-rpc" ]; then break; fi; done \
|
|
< <(inotifywait -e create,open --format '%f' --quiet "${networkdatadir}" --monitor)
|
|
|
|
if [ "$EXPOSE_TCP" == "true" ]; then
|
|
echo "Core-Lightning started, RPC available on port $LIGHTNINGD_RPC_PORT"
|
|
|
|
socat "TCP4-listen:$LIGHTNINGD_RPC_PORT,fork,reuseaddr" "UNIX-CONNECT:${networkdatadir}/lightning-rpc" &
|
|
fi
|
|
|
|
# Now run any scripts which exist in the lightning-poststart.d directory
|
|
if [ -d "$LIGHTNINGD_DATA"/lightning-poststart.d ]; then
|
|
for f in "$LIGHTNINGD_DATA"/lightning-poststart.d/*; do
|
|
"$f"
|
|
done
|
|
fi
|
|
|
|
fg %-
|