mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
fix loop / pool recover
This commit is contained in:
parent
4f7c66b4ee
commit
25dbe24b4c
1 changed files with 4 additions and 6 deletions
|
@ -431,9 +431,8 @@ else
|
|||
echo "Provisioning RTL CLN - keep default" >> ${logFile}
|
||||
fi
|
||||
|
||||
#LOOP
|
||||
# install only if LiT won't be installed
|
||||
if [ "${loop}" = "on" ] && [ "${#lit}" -eq 0 ] || [ "${lit}" = "off" ]; then
|
||||
#LOOP - install only if LiT won't be installed
|
||||
if [ "${loop}" = "on" ] && [ "${lit}" != "on" ]; then
|
||||
echo "Provisioning Lightning Loop - run config script" >> ${logFile}
|
||||
sudo sed -i "s/^message=.*/message='Setup Lightning Loop'/g" ${infoFile}
|
||||
sudo -u admin /home/admin/config.scripts/bonus.loop.sh on >> ${logFile} 2>&1
|
||||
|
@ -659,9 +658,8 @@ else
|
|||
echo "Provisioning Stacking Sats Kraken - keep default" >> ${logFile}
|
||||
fi
|
||||
|
||||
# Pool
|
||||
# install only if LiT won't be installed
|
||||
if [ "${pool}" = "on" ] && [ "${#lit}" -eq 0 ] || [ "${lit}" = "off" ]; then
|
||||
# Pool - install only if LiT won't be installed
|
||||
if [ "${pool}" = "on" ] && [ "${lit}" != "on" ]; then
|
||||
echo "Provisioning Pool - run config script" >> ${logFile}
|
||||
sudo sed -i "s/^message=.*/message='Setup Pool'/g" ${infoFile}
|
||||
sudo -u admin /home/admin/config.scripts/bonus.pool.sh on >> ${logFile} 2>&1
|
||||
|
|
Loading…
Add table
Reference in a new issue