mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-03-01 00:59:23 +01:00
provision: log zram install, fix typos (#4117)
This commit is contained in:
parent
901bfb2a3f
commit
fc845973cc
1 changed files with 10 additions and 10 deletions
|
@ -7,8 +7,8 @@ if [ "$EUID" -ne 0 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# This script gets called from a fresh SD card
|
# This script gets called from a fresh SD card
|
||||||
# starting up that has an config file on HDD
|
# starting up that has a config file on HDD
|
||||||
# from old RaspiBlitz or manufacturer to
|
# from old RaspiBlitz or manufacturer
|
||||||
# to install and config services
|
# to install and config services
|
||||||
|
|
||||||
# LOGFILE - store debug logs of bootstrap
|
# LOGFILE - store debug logs of bootstrap
|
||||||
|
@ -72,7 +72,7 @@ if [ ${kbSizeRAM} -gt 3500000 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# zram on for all devices
|
# zram on for all devices
|
||||||
/home/admin/config.scripts/blitz.zram.sh on
|
/home/admin/config.scripts/blitz.zram.sh on >> ${logFile}
|
||||||
|
|
||||||
# link and copy HDD content into new OS on sd card
|
# link and copy HDD content into new OS on sd card
|
||||||
echo "Copy HDD content for user admin" >> ${logFile}
|
echo "Copy HDD content for user admin" >> ${logFile}
|
||||||
|
@ -839,7 +839,7 @@ if [ -d "/var/cache/raspiblitz/tls_backup" ]; then
|
||||||
cp /var/cache/raspiblitz/tls_backup/tls.cert /mnt/hdd/lnd/tls.cert >> ${logFile} 2>&1
|
cp /var/cache/raspiblitz/tls_backup/tls.cert /mnt/hdd/lnd/tls.cert >> ${logFile} 2>&1
|
||||||
cp /var/cache/raspiblitz/tls_backup/tls.key /mnt/hdd/lnd/tls.key >> ${logFile} 2>&1
|
cp /var/cache/raspiblitz/tls_backup/tls.key /mnt/hdd/lnd/tls.key >> ${logFile} 2>&1
|
||||||
chown -R bitcoin:bitcoin /mnt/hdd/lnd >> ${logFile} 2>&1
|
chown -R bitcoin:bitcoin /mnt/hdd/lnd >> ${logFile} 2>&1
|
||||||
echo "On next final restart admin creds will be updated by _boostrap.sh" >> ${logFile}
|
echo "On next final restart admin creds will be updated by _bootstrap.sh" >> ${logFile}
|
||||||
|
|
||||||
echo "DONE" >> ${logFile}
|
echo "DONE" >> ${logFile}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue