Browse Source

removed old code

dev
rootzoll 6 years ago
parent
commit
97b73aea2f
  1. 16
      home.admin/00settingsMenuServices.sh
  2. 2
      home.admin/config.scripts/lnd.export.sh

16
home.admin/00settingsMenuServices.sh

@ -3,8 +3,6 @@
# get raspiblitz config # get raspiblitz config
source /mnt/hdd/raspiblitz.conf source /mnt/hdd/raspiblitz.conf
if [ ${#autoPilot} -eq 0 ]; then autoPilot="off"; fi if [ ${#autoPilot} -eq 0 ]; then autoPilot="off"; fi
# deactivated - see https://github.com/rootzoll/raspiblitz/issues/248
#if [ ${#autoNatDiscovery} -eq 0 ]; then autoNatDiscovery="off"; fi
if [ ${#autoUnlock} -eq 0 ]; then autoUnlock="off"; fi if [ ${#autoUnlock} -eq 0 ]; then autoUnlock="off"; fi
if [ ${#runBehindTor} -eq 0 ]; then runBehindTor="off"; fi if [ ${#runBehindTor} -eq 0 ]; then runBehindTor="off"; fi
if [ ${#rtlWebinterface} -eq 0 ]; then rtlWebinterface="off"; fi if [ ${#rtlWebinterface} -eq 0 ]; then rtlWebinterface="off"; fi
@ -26,8 +24,6 @@ fi
CHOICES=$(dialog --checklist 'Activate/Deactivate Services:' 15 45 7 \ CHOICES=$(dialog --checklist 'Activate/Deactivate Services:' 15 45 7 \
1 'Channel Autopilot' ${autoPilot} \ 1 'Channel Autopilot' ${autoPilot} \
2 'Testnet' ${chainValue} \ 2 'Testnet' ${chainValue} \
# deactivated - see https://github.com/rootzoll/raspiblitz/issues/248
# 3 'Router AutoNAT' ${autoNatDiscovery} \
3 ${dynDomainMenu} ${domainValue} \ 3 ${dynDomainMenu} ${domainValue} \
4 'Run behind TOR' ${runBehindTor} \ 4 'Run behind TOR' ${runBehindTor} \
5 'RTL Webinterface' ${rtlWebinterface} \ 5 'RTL Webinterface' ${rtlWebinterface} \
@ -127,18 +123,6 @@ else
echo "Testnet Setting unchanged." echo "Testnet Setting unchanged."
fi fi
# deactivated - see https://github.com/rootzoll/raspiblitz/issues/248
# AUTONAT process choice
# choice="off"; check=$(echo "${CHOICES}" | grep -c "3")
# if [ ${check} -eq 1 ]; then choice="on"; fi
# if [ "${autoNatDiscovery}" != "${choice}" ]; then
# echo "AutoNAT Setting changed .."
# sudo /home/admin/config.scripts/lnd.autonat.sh ${choice}
# needsReboot=1
# else
# echo "AutoNAT Setting unchanged."
# fi
# Dynamic Domain # Dynamic Domain
choice="off"; check=$(echo "${CHOICES}" | grep -c "3") choice="off"; check=$(echo "${CHOICES}" | grep -c "3")
if [ ${check} -eq 1 ]; then choice="on"; fi if [ ${check} -eq 1 ]; then choice="on"; fi

2
home.admin/config.scripts/lnd.export.sh

@ -91,10 +91,12 @@ elif [ ${exportType} = "http" ]; then
echo "###### DOWNLOAD BY HTTP ######" echo "###### DOWNLOAD BY HTTP ######"
echo "" echo ""
echo "Open in your browser --> http://${local_ip}:${randomPortNumber}" echo "Open in your browser --> http://${local_ip}:${randomPortNumber}"
echo ""
echo "You need to be on the same local network - not reachable from outside." echo "You need to be on the same local network - not reachable from outside."
echo "In browser click on files or use 'save as' from context menu to download." echo "In browser click on files or use 'save as' from context menu to download."
echo "" echo ""
echo "Temp HTTP Server is running - use CTRL+C to stop when you are done" echo "Temp HTTP Server is running - use CTRL+C to stop when you are done"
echo ""
cd cd
randomFolderName=$(shuf -i 100000000-900000000 -n 1) randomFolderName=$(shuf -i 100000000-900000000 -n 1)
mkdir ${randomFolderName} mkdir ${randomFolderName}

Loading…
Cancel
Save