electrs update server_banner in config (#3464)

This commit is contained in:
ChuckNorrison 2022-11-22 21:31:10 +01:00 committed by GitHub
parent 5fb809c2ec
commit a23c5915a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,6 +527,11 @@ if [ "$1" = "update" ]; then
sudo -u electrs git reset --hard $updateVersion
echo "# Build Electrs ..."
sudo -u electrs /home/electrs/.cargo/bin/cargo build --locked --release || exit 1
# update config
sed -i "/^server_banner =/d" /home/electrs/.electrs/config.toml
sudo bash -c "echo 'server_banner = \"Welcome to electrs $updateVersion - the Electrum Rust Server on your RaspiBlitz\"' >> /home/electrs/.electrs/config.toml"
echo "# Updated Electrs to $updateVersion"
fi
sudo systemctl start electrs