Bläddra i källkod

Index of the code

Bob Mottram 8 år sedan
förälder
incheckning
493eb2e6ed
3 ändrade filer med 3 tillägg och 3 borttagningar
  1. 1
    1
      src/freedombone-app-postactiv
  2. 1
    1
      src/freedombone-config
  3. 1
    1
      src/freedombone-utils-validation

+ 1
- 1
src/freedombone-app-postactiv Visa fil

@@ -124,7 +124,7 @@ function install_interactive_postactiv {
124 124
                     dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
125 125
                 else
126 126
                     if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
127
-                        POSTACTIV_CODE=$(cat $data | sed -n 4p)
127
+                        POSTACTIV_CODE=$(cat $data | sed -n 2p)
128 128
                         validate_freedns_code "$POSTACTIV_CODE"
129 129
                         if [ ! $VALID_CODE ]; then
130 130
                             POSTACTIV_DOMAIN_NAME=

+ 1
- 1
src/freedombone-config Visa fil

@@ -758,7 +758,7 @@ function validate_freedns_code {
758 758
         dialog --title $"Invalid FreeDNS Code" --msgbox "$FREEDNS_MESSAGE" 10 70
759 759
         VALID_CODE=
760 760
     fi
761
-    if [ ${#freedns_code} -lt 25 ]; then
761
+    if [ ${#freedns_code} -lt 30 ]; then
762 762
         dialog --title $"Invalid FreeDNS Code" --msgbox $'FreeDNS code is too short. Did you enter the entire code?' 6 70
763 763
         VALID_CODE=
764 764
     fi

+ 1
- 1
src/freedombone-utils-validation Visa fil

@@ -53,7 +53,7 @@ function validate_freedns_code {
53 53
         dialog --title $"Invalid FreeDNS Code" --msgbox "$FREEDNS_MESSAGE" 10 70
54 54
         VALID_CODE=
55 55
     fi
56
-    if [ ${#freedns_code} -lt 25 ]; then
56
+    if [ ${#freedns_code} -lt 30 ]; then
57 57
         dialog --title $"Invalid FreeDNS Code" --msgbox $'FreeDNS code is too short. Did you enter the entire code?' 6 70
58 58
         VALID_CODE=
59 59
     fi