From bf33120221d54ff02834d8bfc39406344f8f85c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Duss=C3=A9aux?= Date: Sat, 16 Oct 2021 13:31:19 +0100 Subject: [PATCH] Update to latest release of lnd --- lib/configure-node.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/configure-node.sh b/lib/configure-node.sh index 35fadad..70d688c 100644 --- a/lib/configure-node.sh +++ b/lib/configure-node.sh @@ -1,12 +1,13 @@ #!/bin/bash -# Download and unpack the latest lnd. -wget https://github.com/lightningnetwork/lnd/releases/download/v0.13.1-beta/lnd-linux-arm64-v0.13.1-beta.tar.gz +# Download and unpack the latest lnd +# Check to get the latest release: https://github.com/lightningnetwork/lnd/releases/latest +wget https://github.com/lightningnetwork/lnd/releases/download/v0.13.3-beta/lnd-linux-arm64-v0.13.3-beta.tar.gz # TODO: verify signatures on the download -tar xf lnd-linux-arm64-v0.13.1-beta.tar.gz +tar xf lnd-linux-arm64-v0.13.3-beta.tar.gz mkdir /home/ec2-user/bin -cp lnd-linux-arm64-v0.13.1-beta/* /home/ec2-user/bin/ -rm -rf lnd-linux-arm64-v0.13.1-beta* +cp lnd-linux-arm64-v0.13.3-beta/* /home/ec2-user/bin/ +rm -rf lnd-linux-arm64-v0.13.3-beta* # Write lnd config. Feel free to customize this to your liking. You'll want to change the node alias mkdir /home/ec2-user/.lnd @@ -200,4 +201,4 @@ systemctl start incrond # Start lnd! systemctl enable lnd.service -systemctl start lnd.service \ No newline at end of file +systemctl start lnd.service