diff --git a/README.rst b/README.rst index a0ad003..f13bb3a 100644 --- a/README.rst +++ b/README.rst @@ -31,16 +31,14 @@ certbot's command line: ============================================================= ============================================== ``--authenticator certbot-dns-transip:dns-transip`` select the authenticator plugin (Required) -``--certbot-dns-transip:dns-transip-credentials`` transip Remote User credentials +``--dns-transip-credentials`` transip Remote User credentials INI file. (Required) -``--certbot-dns-transip:dns-transip-propagation-seconds`` | waiting time for DNS to propagate before asking +``--dns-transip-propagation-seconds`` | waiting time for DNS to propagate before asking | the ACME server to verify the DNS record. | (Default: 10, Recommended: >= 600) ============================================================= ============================================== -(Note that the verbose and seemingly redundant ``certbot-dns-transip:`` prefix -is currently imposed by certbot for external plugins.) Credentials @@ -54,7 +52,7 @@ An example ``credentials.ini`` file: certbot_dns_transip:dns_transip_api_key= transip_api_key The path to this file can be provided interactively or using the -``--certbot-dns-transip:dns-transip-credentials`` command-line argument. Certbot +``--dns-transip-credentials`` command-line argument. Certbot records the path to this file for use during renewal, but does not store the file's contents. @@ -82,9 +80,9 @@ To acquire a single certificate for both ``example.com`` and .. code-block:: bash certbot certonly \ - --authenticator certbot-dns-transip:dns-transip \ - --certbot-dns-transip:dns-transip-credentials /etc/letsencrypt/.secrets/domain.tld.ini \ - --certbot-dns-transip:dns-transip-propagation-seconds 900 \ + --authenticator dns-transip \ + --dns-transip-credentials /etc/letsencrypt/.secrets/domain.tld.ini \ + --dns-transip-propagation-seconds 900 \ --server https://acme-v02.api.letsencrypt.org/directory \ --agree-tos \ --rsa-key-size 4096 \