* Move Provider Class into correct alphabetical order.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/ddns/providers.py | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index c482dad..2c30d42 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -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>"
-
--
2.7.4
Hello list,
anything new on this? I would love to see this in U106, because i had to stop updating my machines from 103 to 105. Otherwise i would have to edit the providers.py manually again on 20 machines out there.
Thanks!
Reported-by: Thomas Berthel <5p9(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/ddns/providers.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/ddns/providers.py b/src/ddns/providers.py
index 574e483bfcd9..6b25cb6dd8c4 100644
--- a/src/ddns/providers.py
+++ b/src/ddns/providers.py
@@ -1443,8 +1443,8 @@ class DDNSProviderSelfhost(DDNSProtocolDynDNS2, DDNSProvider):
class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider):
handle = "spdns.org"
- name = "SPDNS"
- website = "http://spdns.org/"
+ name = "SPDYN"
+ website = "https://www.spdyn.de/"
# Detailed information about request and response codes are provided
# by the vendor. They are using almost the same mechanism and status
@@ -1453,7 +1453,7 @@ class DDNSProviderSPDNS(DDNSProtocolDynDNS2, DDNSProvider):
# http://wiki.securepoint.de/index.php/SPDNS_FAQ
# http://wiki.securepoint.de/index.php/SPDNS_Update-Tokens
- url = "https://update.spdns.de/nic/update"
+ url = "https://update.spdyn.de/nic/update"
@property
def username(self):
--
2.5.5