#!/bin/bash # LOGFILE - store debug logs of bootstrap logFile="/home/admin/raspiblitz.log" # INFOFILE - state data from bootstrap infoFile="/home/admin/raspiblitz.info" # CONFIGFILE - configuration of RaspiBlitz configFile="/mnt/hdd/raspiblitz.conf" # SETUPFILE - configuration of RaspiBlitz setupFile="/mnt/hdd/raspiblitz.conf" # log header echo "" >> ${logFile} echo "###################################" >> ${logFile} echo "# _provision.update.sh" >> ${logFile} echo "###################################" >> ${logFile} sudo sed -i "s/^message=.*/message='Running Data Update'/g" ${infoFile} # HDD BTRFS RAID REPAIR IF NEEDED source <(sudo /home/admin/config.scripts/blitz.datadrive.sh status) if [ ${isBTRFS} -eq 1 ] && [ ${isMounted} -eq 1 ]; then echo "CHECK BTRFS RAID" >> ${logFile} if [ ${isRaid} -eq 1 ] && [ ${#raidUsbDev} -eq 0 ]; then echo "HDD was set to work in RAID, but RAID drive is not connected" >> ${logFile} echo "Trying to set HDD back to single mode." >> ${logFile} sudo /home/admin/config.scripts/blitz.datadrive.sh raid off >> ${logFile} else echo "OK" >> ${logFile} fi fi # LOAD DATA & PRECHECK # load old or init raspiblitz config source ${configFile} # check if config files contains basic: hostname if [ ${#hostname} -eq 0 ]; then sed -i "s/^state=.*/state=error/g" ${infoFile} sed -i "s/^message=.*/message='config: missing hostname'/g" ${infoFile} echo "FAIL see ${logFile}" echo "FAIL: missing hostname in (${configFile})!" >> ${logFile} exit 1 fi # load codeVersion source /home/admin/_version.info # check if code version was loaded if [ ${#codeVersion} -eq 0 ]; then sed -i "s/^state=.*/state=error/g" ${infoFile} sed -i "s/^message=.*/message='missing /home/admin/_version.info'/g" ${infoFile} echo "FAIL see ${logFile}" echo "FAIL: no code version (/home/admin/_version.info) found!" >> ${logFile} exit 1 fi echo "prechecks OK" >> ${logFile} # MIGRATION - DATA CONVERSION when updating config # this is the place if on a future version change # a conversion of config data or app data is needed # if old bitcoin.conf exists ... configExists=$(sudo ls /mnt/hdd/bitcoin/bitcoin.conf | grep -c '.conf') if [ ${configExists} -eq 1 ]; then echo "Checking old bitcoin.conf ..." >> ${logFile} # make sure to fix bitcoind RPC port if not done in old version # https://github.com/rootzoll/raspiblitz/issues/217 # https://github.com/rootzoll/raspiblitz/issues/950 if ! grep -Eq "^rpcallowip=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #217 -> adding rpcallowip=127.0.0.1" >> ${logFile} echo "rpcallowip=127.0.0.1" >> /mnt/hdd/${network}/${network}.conf else echo "check issue #217 -> ok rpcallow exists" >> ${logFile} fi # check whether "main." needs to be added to rpcport and rpcbind if grep -Eq "^rpcport=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #950 -> change rpcport to main.rpcport" >> ${logFile} sudo sed -i -E 's/^(rpcport=.*)/main.\1/g' /mnt/hdd/${network}/${network}.conf else echo "check issue #950 -> ok ^rpcport does not exist" >> ${logFile} fi if grep -Eq "^rpcbind=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #950 -> change rpcbind to main.rpcbind" >> ${logFile} sudo sed -i -E 's/^(rpcbind=.*)/main.\1/g' /mnt/hdd/${network}/${network}.conf else echo "check issue #950 -> ok ^rpcbind does not exist" >> ${logFile} fi # check whether right settings are there ("main.") if ! grep -Eq "^main.rpcport=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #217 -> adding main.rpcport=8332" >> ${logFile} echo "main.rpcport=8332" >> /mnt/hdd/${network}/${network}.conf else echo "check issue #217 -> ok main.rpcport exists" >> ${logFile} fi if ! grep -Eq "^main.rpcbind=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #217 -> adding main.rpcbind=127.0.0.1:8332" >> ${logFile} echo "main.rpcbind=127.0.0.1:8332" >> /mnt/hdd/${network}/${network}.conf else echo "check issue #217 -> ok main.rpcbind exists" >> ${logFile} fi # same for testnet if ! grep -Eq "^test.rpcport=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #950 -> adding test.rpcport=18332" >> ${logFile} echo "test.rpcport=18332" >> /mnt/hdd/${network}/${network}.conf else echo "check issue #950 -> ok test.rpcport exists" >> ${logFile} fi if ! grep -Eq "^test.rpcbind=.*" /mnt/hdd/${network}/${network}.conf; then echo "fix issue #950 -> adding test.rpcbind=127.0.0.1:18332" >> ${logFile} echo "test.rpcbind=127.0.0.1:18332" >> /mnt/hdd/${network}/${network}.conf else echo "check issue #950 -> ok test.rpcbind exists" >> ${logFile} fi else echo "WARN: /mnt/hdd/bitcoin/bitcoin.conf not found" >> ${logFile} fi # if old lnd.conf exists ... configExists=$(sudo ls /mnt/hdd/lnd/lnd.conf | grep -c '.conf') if [ ${configExists} -eq 1 ]; then # remove RPC user & pass from lnd.conf ... since v1.7 # https://github.com/rootzoll/raspiblitz/issues/2160 echo "- #2160 lnd.conf --> make sure contains no RPC user/pass for bitcoind" >> ${logFile} sudo sed -i '/^\[Bitcoind\]/d' /mnt/hdd/lnd/lnd.conf sudo sed -i '/^bitcoind.rpchost=/d' /mnt/hdd/lnd/lnd.conf sudo sed -i '/^bitcoind.rpcpass=/d' /mnt/hdd/lnd/lnd.conf sudo sed -i '/^bitcoind.rpcuser=/d' /mnt/hdd/lnd/lnd.conf sudo sed -i '/^bitcoind.zmqpubrawblock=/d' /mnt/hdd/lnd/lnd.conf sudo sed -i '/^bitcoind.zmqpubrawtx=/d' /mnt/hdd/lnd/lnd.conf # make sure additional values are added to [Application Options] since v1.7 echo "- lnd.conf --> checking additional [Application Options] since v1.7" >> ${logFile} applicationOptionsLineNumber=$(sudo grep -n "\[Application Options\]" /mnt/hdd/lnd/lnd.conf | cut -d ":" -f1) if [ "${applicationOptionsLineNumber}" != "" ]; then applicationOptionsLineNumber="$(($applicationOptionsLineNumber+1))" # Avoid historical graph data sync # ignore-historical-gossip-filters=1 configParamExists=$(sudo grep -c "^ignore-historical-gossip-filters=" /mnt/hdd/lnd/lnd.conf) if [ "${configParamExists}" == "0" ]; then echo " - ADDING 'ignore-historical-gossip-filters'" >> ${logFile} sudo sed -i "${applicationOptionsLineNumber}iignore-historical-gossip-filters=1" /mnt/hdd/lnd/lnd.conf else echo " - OK 'ignore-historical-gossip-filters' exists (${configParamExists})" >> ${logFile} fi # Avoid slow startup time # sync-freelist=1 configParamExists=$(sudo grep -c "^sync-freelist=" /mnt/hdd/lnd/lnd.conf) if [ "${configParamExists}" == "0" ]; then echo " - ADDING 'sync-freelist'" >> ${logFile} sudo sed -i "${applicationOptionsLineNumber}isync-freelist=1" /mnt/hdd/lnd/lnd.conf else echo " - OK 'sync-freelist' exists (${configParamExists})" >> ${logFile} fi # Avoid high startup overhead # stagger-initial-reconnect=1 configParamExists=$(sudo grep -c "^stagger-initial-reconnect=" /mnt/hdd/lnd/lnd.conf) if [ "${configParamExists}" == "0" ]; then echo " - ADDING 'stagger-initial-reconnect'" >> ${logFile} sudo sed -i "${applicationOptionsLineNumber}istagger-initial-reconnect=1" /mnt/hdd/lnd/lnd.conf else echo " - OK 'stagger-initial-reconnect' exists (${configParamExists})" >> ${logFile} fi # Delete and recreate RPC TLS certificate when details change or cert expires # tlsautorefresh=1 configParamExists=$(sudo grep -c "^tlsautorefresh=" /mnt/hdd/lnd/lnd.conf) if [ "${configParamExists}" == "0" ]; then echo " - ADDING 'tlsautorefresh'" >> ${logFile} sudo sed -i "${applicationOptionsLineNumber}itlsautorefresh=1" /mnt/hdd/lnd/lnd.conf else echo " - OK 'tlsautorefresh' exists (${configParamExists})" >> ${logFile} fi # Do not include IPs in the RPC TLS certificate # tlsdisableautofill=1 configParamExists=$(sudo grep -c "^tlsdisableautofill=" /mnt/hdd/lnd/lnd.conf) if [ "${configParamExists}" == "0" ]; then echo " - ADDING 'tlsdisableautofill'" >> ${logFile} sudo sed -i "${applicationOptionsLineNumber}itlsdisableautofill=1" /mnt/hdd/lnd/lnd.conf else echo " - OK 'tlsdisableautofill' exists (${configParamExists})" >> ${logFile} fi else echo " - WARN: section '[Application Options]' not found in lnd.conf" >> ${logFile} fi else echo "WARN: /mnt/hdd/lnd/lnd.conf not found" >> ${logFile} fi echo "Version Code: ${codeVersion}" >> ${logFile} echo "Version Data: ${raspiBlitzVersion}" >> ${logFile} if [ "${raspiBlitzVersion}" != "${codeVersion}" ]; then echo "detected version change ... starting migration script" >> ${logFile} # nothing specific here yet echo "OK Done - Updating version in config" sudo sed -i "s/^raspiBlitzVersion=.*/raspiBlitzVersion='${codeVersion}'/g" ${configFile} else echo "OK - version of config data is up to date" >> ${logFile} fi echo "END Migration/Init" >> ${logFile} exit 0