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"