浏览代码

Index of the code

Bob Mottram 8 年前
父节点
当前提交
493eb2e6ed
共有 3 个文件被更改,包括 3 次插入3 次删除
  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 查看文件

124
                     dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
124
                     dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
125
                 else
125
                 else
126
                     if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
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
                         validate_freedns_code "$POSTACTIV_CODE"
128
                         validate_freedns_code "$POSTACTIV_CODE"
129
                         if [ ! $VALID_CODE ]; then
129
                         if [ ! $VALID_CODE ]; then
130
                             POSTACTIV_DOMAIN_NAME=
130
                             POSTACTIV_DOMAIN_NAME=

+ 1
- 1
src/freedombone-config 查看文件

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

+ 1
- 1
src/freedombone-utils-validation 查看文件

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