Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorȘtefan Talpalaru <stefantalpalaru@yahoo.com>2020-07-19 17:32:30 +0300
committerȘtefan Talpalaru <stefantalpalaru@yahoo.com>2020-07-19 17:44:37 +0300
commitb6964cae2e9ad6e9bd316c3dfb3d3b1c322c958b (patch)
tree270b88b14a262f67d00ff7e8eb51e7cd005cd7d1 /certbot-dns-linode
parentebf1349b15098548b0dcad30a0dabd07ed3f11d1 (diff)
certbot_dns_linode: decrease the default propagation interval
«When you add or change DNS zones or records, your changes will now be reflected at our authoritative nameservers in under 60 seconds. This is down from the previous “every quarter hour” approach that we had for so long.» - https://www.linode.com/blog/linode/linode-turns-17/
Diffstat (limited to 'certbot-dns-linode')
-rw-r--r--certbot-dns-linode/certbot_dns_linode/__init__.py16
-rw-r--r--certbot-dns-linode/certbot_dns_linode/_internal/dns_linode.py2
2 files changed, 9 insertions, 9 deletions
diff --git a/certbot-dns-linode/certbot_dns_linode/__init__.py b/certbot-dns-linode/certbot_dns_linode/__init__.py
index 107781a13..4bfd95573 100644
--- a/certbot-dns-linode/certbot_dns_linode/__init__.py
+++ b/certbot-dns-linode/certbot_dns_linode/__init__.py
@@ -14,10 +14,10 @@ Named Arguments
DNS to propagate before asking the
ACME server to verify the DNS
record.
- (Default: 1200 because Linode
- updates its first DNS every 15
- minutes and we allow 5 more minutes
- for the update to reach the other 5
+ (Default: 120 because Linode
+ updates its first DNS every 60
+ seconds and we allow 60 more seconds
+ for the update to reach other 5
servers)
========================================== ===================================
@@ -80,15 +80,15 @@ Examples
-d www.example.com
.. code-block:: bash
- :caption: To acquire a certificate for ``example.com``, waiting 1000 seconds
- for DNS propagation (Linode updates its first DNS every 15 minutes
- and we allow some extra time for the update to reach the other 5
+ :caption: To acquire a certificate for ``example.com``, waiting 120 seconds
+ for DNS propagation (Linode updates its first DNS every minute
+ and we allow some extra time for the update to reach other 5
servers)
certbot certonly \\
--dns-linode \\
--dns-linode-credentials ~/.secrets/certbot/linode.ini \\
- --dns-linode-propagation-seconds 1000 \\
+ --dns-linode-propagation-seconds 120 \\
-d example.com
"""
diff --git a/certbot-dns-linode/certbot_dns_linode/_internal/dns_linode.py b/certbot-dns-linode/certbot_dns_linode/_internal/dns_linode.py
index f7b3ec3d4..f9450c02c 100644
--- a/certbot-dns-linode/certbot_dns_linode/_internal/dns_linode.py
+++ b/certbot-dns-linode/certbot_dns_linode/_internal/dns_linode.py
@@ -32,7 +32,7 @@ class Authenticator(dns_common.DNSAuthenticator):
@classmethod
def add_parser_arguments(cls, add): # pylint: disable=arguments-differ
- super(Authenticator, cls).add_parser_arguments(add, default_propagation_seconds=1200)
+ super(Authenticator, cls).add_parser_arguments(add, default_propagation_seconds=120)
add('credentials', help='Linode credentials INI file.')
def more_info(self): # pylint: disable=missing-function-docstring