From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: ddns@lists.ipfire.org Subject: [PATCH] Schockokeks.org: Fix malformed update URL. Date: Fri, 28 Oct 2016 12:35:20 +0200 Message-ID: <1477650920-2607-1-git-send-email-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8836960208792467847==" List-Id: --===============8836960208792467847== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit * Move Provider Class into correct alphabetical order. Signed-off-by: Stefan Schantl --- 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=" - -- 2.7.4 --===============8836960208792467847==--