Browse Source

Welcome dialog for interactive installer

Bob Mottram 10 years ago
parent
commit
101cff0741
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/freedombone

+ 8
- 0
src/freedombone View File

33
 
33
 
34
 NO_OF_ARGS=$#
34
 NO_OF_ARGS=$#
35
 
35
 
36
+# Web site
37
+FREEDOMBONE_WEBSITE="http://freedombone.uk.to"
38
+
39
+# Contact details
40
+FREEDOMBONE_BITMESSAGE="BM-2cWuhmBvVdfrHhLoZTdspCkKeiTorUesSL"
41
+
36
 DOMAIN_NAME=
42
 DOMAIN_NAME=
37
 MY_USERNAME=
43
 MY_USERNAME=
38
 SYSTEM_TYPE=
44
 SYSTEM_TYPE=
412
 }
418
 }
413
 
419
 
414
 function interactive_configuration {
420
 function interactive_configuration {
421
+  dialog --title "Freedombone" --msgbox "Welcome to the Freedombone interactive installer. Communications freedom is only a short time away.\n\nEnsure that you have your domain and dynamic DNS settings ready.\n\nFor more information please visit $FREEDOMBONE_WEBSITE or send a Bitmessage to $FREEDOMBONE_BITMESSAGE" 15 50
422
+
415
   data=$(tempfile 2>/dev/null)
423
   data=$(tempfile 2>/dev/null)
416
   trap "rm -f $data" 0 1 2 5 15
424
   trap "rm -f $data" 0 1 2 5 15
417
   dialog --backtitle "Freedombone Configuration" \
425
   dialog --backtitle "Freedombone Configuration" \