Rename letsencrypt module utils / document fragment to acme. (#40697)

This commit is contained in:
Felix Fontein 2018-05-25 09:08:14 +02:00 committed by René Moser
parent 4188c5986b
commit e294426b07
5 changed files with 6 additions and 6 deletions

4
.github/BOTMETA.yml vendored
View file

@ -800,6 +800,8 @@ files:
$module_utils/network/aci:
maintainers: $team_aci
labels: networking
$module_utils/acme.py:
maintainers: mgruener resmo felixfontein
$module_utils/network/aireos:
maintainers: jmighion
labels: networking
@ -865,8 +867,6 @@ files:
labels: clustering
$module_utils/keycloak.py:
maintainers: eikef
$module_utils/letsencrypt.py:
maintainers: mgruener resmo felixfontein
$module_utils/manageiq.py:
maintainers: $team_manageiq
$module_utils/network/meraki:

View file

@ -25,7 +25,7 @@ description:
(CA), run for the public's benefit. For details see U(https://letsencrypt.org)."
- "This module only works with the ACME v2 protocol."
extends_documentation_fragment:
- letsencrypt
- acme
options:
state:
description:
@ -111,7 +111,7 @@ account_uri:
type: string
'''
from ansible.module_utils.letsencrypt import (
from ansible.module_utils.acme import (
ModuleFailException, ACMEAccount
)

View file

@ -43,7 +43,7 @@ description:
- "Note: this module was called C(letsencrypt) before Ansible 2.6. The usage
did not change."
extends_documentation_fragment:
- letsencrypt
- acme
options:
account_email:
description:
@ -291,7 +291,7 @@ account_uri:
version_added: "2.5"
'''
from ansible.module_utils.letsencrypt import (
from ansible.module_utils.acme import (
ModuleFailException, fetch_url, write_file, nopad_b64, simple_get, ACMEAccount
)