raspiblitz/home.admin/95finalSetup.sh

53 lines
1.3 KiB
Bash
Raw Normal View History

2018-12-06 17:39:06 +01:00
#!/bin/bash
echo ""
2018-12-11 04:17:25 +01:00
# set raspiblitz config file
configFile="/mnt/hdd/raspiblitz.conf"
2018-12-06 17:39:06 +01:00
# load setup config
source /home/admin/raspiblitz.info
# load version
source /home/admin/_version.info
# show info to user
dialog --backtitle "RaspiBlitz - Setup" --title " RaspiBlitz Setup is done :) " --msgbox "
2018-12-10 18:01:38 +01:00
After reboot RaspiBlitz
needs to be unlocked and
sync with the network.
2018-12-06 17:39:06 +01:00
2018-12-10 18:01:38 +01:00
Press OK for a final reboot.
2018-12-06 17:39:06 +01:00
" 10 42
# init the RASPIBLITZ Config
echo "# RASPIBLITZ CONFIG FILE" > $configFile
echo "raspiBlitzVersion='${codeVersion}'" >> $configFile
sudo chmod 777 ${configFile}
# transfer data from SD info file
echo "hostname=${hostname}" >> $configFile
echo "network=${network}" >> $configFile
echo "chain=${chain}" >> $configFile
# let migration/init script do the rest
2018-12-11 19:17:35 +01:00
/home/admin/_bootstrap.migration.sh
2018-12-11 02:04:55 +01:00
2018-12-10 16:04:48 +01:00
# copy logfile to analyse setup
cp $logFile /home/admin/raspiblitz.setup.log
2018-12-06 17:39:06 +01:00
# set the hostname inputed on initDialog
if [ ${#hostname} -gt 0 ]; then
echo "Setting new network hostname '$hostname'"
sudo raspi-config nonint do_hostname ${hostname}
else
echo "WARN: hostname not set"
fi
# mark setup is done (100%)
sudo sed -i "s/^setupStep=.*/setupStep=100/g" /home/admin/raspiblitz.info
clear
2018-12-10 20:05:58 +01:00
echo "Setup done. Rebooting now."
sleep 3
2018-12-10 16:09:45 +01:00
sudo shutdown -r now