mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:02:52 +02:00
Implement an Authenticator which can fulfill a dns-01 challenge using
the Sakura Cloud DNS API.
Applicable only for domains using Sakura Cloud for DNS.
Testing Done:
* `tox -e py27`
* `tox -e lint`
* Manual testing:
* Used `certbot certonly --dns-sakuracloud -d`, specifying a
credentials file as a command line argument. Verified that a
certificate was successfully obtained without user interaction.
* Negative testing:
* Path to non-existent credentials file.
* Credentials file with unsafe permissions (644).
* Domain name not registered to Sakura Cloud account.
13 lines
521 B
Plaintext
13 lines
521 B
Plaintext
# readthedocs.org gives no way to change the install command to "pip
|
|
# install -e .[docs]" (that would in turn install documentation
|
|
# dependencies), but it allows to specify a requirements.txt file at
|
|
# https://readthedocs.org/dashboard/letsencrypt/advanced/ (c.f. #259)
|
|
|
|
# Although ReadTheDocs certainly doesn't need to install the project
|
|
# in --editable mode (-e), just "pip install .[docs]" does not work as
|
|
# expected and "pip install -e .[docs]" must be used instead
|
|
|
|
-e acme
|
|
-e .
|
|
-e certbot-dns-sakuracloud[docs]
|