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:
authorBrad Warren <bmw@users.noreply.github.com>2018-11-20 03:21:45 +0300
committerGitHub <noreply@github.com>2018-11-20 03:21:45 +0300
commit000fc0b751e140f6055c524f012d932c62a929e6 (patch)
treebaa3b40570dffb4b691074739d7845dc675503a1 /certbot-dns-linode/certbot_dns_linode/__init__.py
parent5e9a5e4daa23bae848ddff76c6964e31f9f68e8f (diff)
parent9fd4bf3dfa9ad214bff896c63a3649e28b83463c (diff)
Merge pull request #6498 from certbot/fix-merge-conflicts
Fix merge conflicts in test-everything
Diffstat (limited to 'certbot-dns-linode/certbot_dns_linode/__init__.py')
-rw-r--r--certbot-dns-linode/certbot_dns_linode/__init__.py14
1 files changed, 10 insertions, 4 deletions
diff --git a/certbot-dns-linode/certbot_dns_linode/__init__.py b/certbot-dns-linode/certbot_dns_linode/__init__.py
index 0c445f45d..0a6ccec61 100644
--- a/certbot-dns-linode/certbot_dns_linode/__init__.py
+++ b/certbot-dns-linode/certbot_dns_linode/__init__.py
@@ -14,7 +14,11 @@ Named Arguments
DNS to propagate before asking the
ACME server to verify the DNS
record.
- (Default: 960)
+ (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
+ servers)
========================================== ===================================
@@ -74,13 +78,15 @@ Examples
-d www.example.com
.. code-block:: bash
- :caption: To acquire a certificate for ``example.com``, waiting 60 seconds
- for DNS propagation
+ :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
+ servers)
certbot certonly \\
--dns-linode \\
--dns-linode-credentials ~/.secrets/certbot/linode.ini \\
- --dns-linode-propagation-seconds 60 \\
+ --dns-linode-propagation-seconds 1000 \\
-d example.com
"""