From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] ddns: Import patch to support infomaniak.ch Date: Mon, 22 Apr 2024 10:01:49 +0000 Message-ID: <20240422100149.3680266-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6867127051281338409==" List-Id: --===============6867127051281338409== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- lfs/ddns | 1 + ...er-and-sample-configuration-for-info.patch | 61 +++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 src/patches/ddns-15-chore-add-provider-and-sample-configu= ration-for-info.patch diff --git a/lfs/ddns b/lfs/ddns index 274c12cb9..4b6d213c8 100644 --- a/lfs/ddns +++ b/lfs/ddns @@ -74,6 +74,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Apply upstream patches. cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-014-freednsafrai= d-fix-typo.patch cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-system-Catch-exc= eption-when-host-is-not-dual-stacked.patch + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ddns-15-chore-add-pro= vider-and-sample-configuration-for-info.patch =20 cd $(DIR_APP) && [ -x "configure" ] || sh ./autogen.sh cd $(DIR_APP) && ./configure \ diff --git a/src/patches/ddns-15-chore-add-provider-and-sample-configuration-= for-info.patch b/src/patches/ddns-15-chore-add-provider-and-sample-configurat= ion-for-info.patch new file mode 100644 index 000000000..ed5561eb5 --- /dev/null +++ b/src/patches/ddns-15-chore-add-provider-and-sample-configuration-for-inf= o.patch @@ -0,0 +1,61 @@ +From e928b37b8f5509af195d1c56ecf89c3dbfdb0072 Mon Sep 17 00:00:00 2001 +From: =3D?UTF-8?q?Rouven=3D20Sch=3DC3=3DBCrch?=3D +Date: Sun, 21 Apr 2024 13:11:52 +0200 +Subject: [PATCH] chore: add provider and sample configuration for + infomaniak.ch +MIME-Version: 1.0 +Content-Type: text/plain; charset=3DUTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Rouven Sch=C3=BCrch +Signed-off-by: Michael Tremer +--- + ddns.conf.sample | 6 +++++- + src/ddns/providers.py | 12 ++++++++++++ + 2 files changed, 17 insertions(+), 1 deletion(-) + +diff --git a/ddns.conf.sample b/ddns.conf.sample +index f93c738..f1adf5d 100644 +--- a/ddns.conf.sample ++++ b/ddns.conf.sample +@@ -105,12 +105,16 @@ + # username =3D key + # password =3D secret +=20 +- + # [test.google.com] + # provider =3D domains.google.com + # username =3D user + # password =3D pass +=20 ++# [test.infomaniak.ch] ++# provider =3D infomaniak.ch ++# username =3D user ++# password =3D pass ++ + # [test.loopia.se] + # provider =3D loopia.se + # username =3D user +diff --git a/src/ddns/providers.py b/src/ddns/providers.py +index 8025720..59f9665 100644 +--- a/src/ddns/providers.py ++++ b/src/ddns/providers.py +@@ -2005,3 +2005,15 @@ class DDNSProviderZZZZ(DDNSProvider): +=20 + # If we got here, some other update error happened. + raise DDNSUpdateError ++ ++class DDNSProviderInfomaniak(DDNSProtocolDynDNS2, DDNSProvider): ++ handle =3D "infomaniak.ch" ++ name =3D "infomaniak" ++ website =3D "https://www.infomaniak.ch" ++ protocols =3D ("ipv4",) ++ ++ # Detailed information about how to send the update request and possible r= esponse ++ # codes can be obtained from here. ++ # https://www.infomaniak.com/de/support/faq/2376/dyndns-aktualisieren-eine= s-dynamischen-dns-uber-die-api ++ ++ url =3D "https://infomaniak.com/nic/update" +--=20 +2.39.2 + --=20 2.39.2 --===============6867127051281338409==--