From f9304d9ade15b5ca215b11d3a0be85f6abf5e940 Mon Sep 17 00:00:00 2001 From: nolim1t Date: Tue, 23 Jun 2020 14:20:26 +0700 Subject: [PATCH] Hace the tor password get uncommented --- configure-box.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure-box.sh b/configure-box.sh index fd44325..6118863 100755 --- a/configure-box.sh +++ b/configure-box.sh @@ -39,9 +39,9 @@ echo "Adding tor password" SAVE_PASSWORD=`tor --hash-password "${RPCPASS}"` echo "HashedControlPassword ${SAVE_PASSWORD}" >> tor/torrc echo "Configuring bitcoind" -sed -i "s/#torpassword=umbrelftw/#torpassword=${RPCPASS}/g;" bitcoin/bitcoin.conf +sed -i "s/#torpassword=umbrelftw/torpassword=${RPCPASS}/g;" bitcoin/bitcoin.conf echo "Configuring LND" -sed -i "s/; tor.password=umbrelftw/; tor.password=${RPCPASS}/g; " lnd/lnd.conf +sed -i "s/; tor.password=umbrelftw/tor.password=${RPCPASS}/g; " lnd/lnd.conf rm configure-box.sh echo "Box Configuration complete"