mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-19 18:00:22 +01:00
info dialog on dyndomain
This commit is contained in:
parent
ee65604df5
commit
0e333b0866
@ -1,5 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
# get raspiblitz config
|
||||
source /mnt/hdd/raspiblitz.conf
|
||||
|
||||
# check if dynamic domain is set
|
||||
if [ ${#dynDomain} -eq 0 ]; then
|
||||
dialog --title " Just Local Network? " --yesno "If you want to connect with your RaspiBlitz
|
||||
also from outside your local network you need to
|
||||
activate 'Services' -> 'Dynamic Domain' FIRST.
|
||||
|
||||
For more details see chapter in GitHub README
|
||||
'Public Domain with dynamic IP'
|
||||
https://github.com/rootzoll/raspiblitz
|
||||
|
||||
Do you JUST want to connect with your mobile,
|
||||
when your are on the same LOCAL NETWORK?
|
||||
" 14 54
|
||||
response=$?
|
||||
case $response in
|
||||
1) exit ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Basic Options
|
||||
OPTIONS=(ZAP "Zap Wallet (iOS)" \
|
||||
SHANGO "Shango Wallet (iOS/Android)")
|
||||
|
Loading…
Reference in New Issue
Block a user