]> git.ipfire.org Git - ipfire-2.x.git/blame - src/patches/ddns-012-noip-fix-handle-name.patch
core142: add proxy.cgi tp updater
[ipfire-2.x.git] / src / patches / ddns-012-noip-fix-handle-name.patch
CommitLineData
4ae9d47b
SS
1commit c0277eeea2b2c1ed8f40f1248b28438e44e51912
2Author: Stefan Schantl <stefan.schantl@ipfire.org>
3Date: Tue Nov 12 08:43:31 2019 +0100
4
5 NoIP.com: Rename handle back to no-ip.com
6
7 The old handle name is required for backward compatiblity.
8
9 Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
10
11diff --git a/ddns.conf.sample b/ddns.conf.sample
12index 528684f..61a608a 100644
13--- a/ddns.conf.sample
14+++ b/ddns.conf.sample
15@@ -120,7 +120,7 @@
16 # password = pass
17
18 # [test.noip.org]
19-# provider = noip.com
20+# provider = no-ip.com
21 # username = user
22 # password = pass
23
24diff --git a/src/ddns/providers.py b/src/ddns/providers.py
25index 4789107..661fbcc 100644
26--- a/src/ddns/providers.py
27+++ b/src/ddns/providers.py
28@@ -1344,7 +1344,7 @@ class DDNSProviderNamecheap(DDNSResponseParserXML, DDNSProvider):
29
30
31 class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider):
32- handle = "noip.com"
33+ handle = "no-ip.com"
34 name = "NoIP"
35 website = "http://www.noip.com/"
36 protocols = ("ipv4",)