-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: kaliko <[email protected]>
- Loading branch information
Showing
4 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# SPDX-FileCopyrightText: 2021-2022 Rene Luria <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
""" | ||
This plugin enables usage of Infomaniak public API to complete``dns-01`` challenges. | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# SPDX-FileCopyrightText: 2021-2022 Rene Luria <[email protected]> | ||
# SPDX-FileCopyrightText: 2021-2022 Yannik Roth <[email protected]> | ||
# SPDX-FileCopyrightText: 2021 Romain Autran <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
"""DNS Authenticator for Infomaniak""" | ||
import json | ||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# SPDX-FileCopyrightText: 2021-2022 Rene Luria <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
"""Tests for certbot_dns_infomaniak.dns_infomaniak.""" | ||
|
||
import unittest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# SPDX-FileCopyrightText: 2021-2022 Rene Luria <[email protected]> | ||
# SPDX-FileCopyrightText: 2021-2022 Yannik Roth <[email protected]> | ||
# SPDX-License-Identifier: Apache-2.0 | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
from os import path | ||
|