]> git.ipfire.org Git - oddments/ddns.git/blobdiff - src/ddns/providers.py
Schockokeks.org: Fix malformed update URL.
[oddments/ddns.git] / src / ddns / providers.py
index c482dad107117ff8cc779b73b628d6111fac3b92..2c30d42976059a84af947c67da0fcd5371b3e465 100644 (file)
@@ -1424,6 +1424,17 @@ class DDNSProviderRegfish(DDNSProvider):
                raise DDNSUpdateError
 
 
+class DDNSProviderSchokokeksDNS(DDNSProtocolDynDNS2, DDNSProvider):
+       handle    = "schokokeks.org"
+       name      = "Schokokeks"
+       website   = "http://www.schokokeks.org/"
+       protocols = ("ipv4",)
+
+       # Information about the format of the request is to be found
+       # https://wiki.schokokeks.org/DynDNS
+       url = "https://dyndns.schokokeks.org/nic/update"
+
+
 class DDNSProviderSelfhost(DDNSProtocolDynDNS2, DDNSProvider):
        handle    = "selfhost.de"
        name      = "Selfhost.de"
@@ -1687,15 +1698,3 @@ class DDNSProviderZZZZ(DDNSProvider):
 
                # If we got here, some other update error happened.
                raise DDNSUpdateError
-
-class DDNSProviderSchokokeksDNS(DDNSProtocolDynDNS2, DDNSProvider):
-       handle    = "schokokeks.org"
-       name      = "Schokokeks"
-       website   = "http://www.schokokeks.org/"
-       protocols = ("ipv4",)
-
-       # Information about the format of the request is to be found
-       # https://wiki.schokokeks.org/DynDNS
-
-       url = "https://dyndns.schokokeks.org/nic/update?myip=<ipaddr>"
-