mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-28 16:58:03 +01:00
make sure to update os on release
This commit is contained in:
parent
9f7c479b0d
commit
544e49ecf8
1 changed files with 7 additions and 7 deletions
|
@ -38,12 +38,6 @@ echo "cpu=${cpu}" >> /home/admin/raspiblitz.info
|
||||||
echo "blitzapi=${blitzapi}" >> /home/admin/raspiblitz.info
|
echo "blitzapi=${blitzapi}" >> /home/admin/raspiblitz.info
|
||||||
echo "displayClass=${displayClass}" >> /home/admin/raspiblitz.info
|
echo "displayClass=${displayClass}" >> /home/admin/raspiblitz.info
|
||||||
|
|
||||||
# make sure that every install runs API with own secret=
|
|
||||||
echo
|
|
||||||
echo "deleting old API conf ..."
|
|
||||||
sudo rm /home/blitzapi/blitz_api/.env 2>/dev/null
|
|
||||||
echo "OK"
|
|
||||||
|
|
||||||
# https://github.com/rootzoll/raspiblitz/issues/1371
|
# https://github.com/rootzoll/raspiblitz/issues/1371
|
||||||
echo
|
echo
|
||||||
echo "deactivate local WIFI ..."
|
echo "deactivate local WIFI ..."
|
||||||
|
@ -53,7 +47,8 @@ echo "OK"
|
||||||
# make sure that every install runs API with own secret
|
# make sure that every install runs API with own secret
|
||||||
# https://github.com/raspiblitz/raspiblitz/issues/4469
|
# https://github.com/raspiblitz/raspiblitz/issues/4469
|
||||||
echo
|
echo
|
||||||
# check if redis is enabled
|
echo "deleting old API conf ..."
|
||||||
|
sudo rm /home/blitzapi/blitz_api/.env 2>/dev/null
|
||||||
REDIS_ENABLED=$(sudo systemctl is-enabled redis 2>/dev/null | grep -c enabled)
|
REDIS_ENABLED=$(sudo systemctl is-enabled redis 2>/dev/null | grep -c enabled)
|
||||||
if [ ${REDIS_ENABLED} -gt 0 ]; then
|
if [ ${REDIS_ENABLED} -gt 0 ]; then
|
||||||
echo "disable redis for initial start ..."
|
echo "disable redis for initial start ..."
|
||||||
|
@ -70,6 +65,11 @@ echo "reset DNS confs ..."
|
||||||
echo -e "nameserver 1.1.1.1\nnameserver 84.200.69.80" | sudo tee /etc/resolv.conf > /dev/null
|
echo -e "nameserver 1.1.1.1\nnameserver 84.200.69.80" | sudo tee /etc/resolv.conf > /dev/null
|
||||||
echo "OK"
|
echo "OK"
|
||||||
|
|
||||||
|
# update system
|
||||||
|
echo "update OS ..."
|
||||||
|
sudo apt-get update -y
|
||||||
|
sudo apt-get upgrade -f -y
|
||||||
|
|
||||||
# SSH Pubkeys (make unique for every sd card image install)
|
# SSH Pubkeys (make unique for every sd card image install)
|
||||||
echo
|
echo
|
||||||
echo "deleting SSH Pub keys ..."
|
echo "deleting SSH Pub keys ..."
|
||||||
|
|
Loading…
Add table
Reference in a new issue