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: $module_utils/network/aci:
maintainers: $team_aci maintainers: $team_aci
labels: networking labels: networking
$module_utils/acme.py:
maintainers: mgruener resmo felixfontein
$module_utils/network/aireos: $module_utils/network/aireos:
maintainers: jmighion maintainers: jmighion
labels: networking labels: networking
@ -865,8 +867,6 @@ files:
labels: clustering labels: clustering
$module_utils/keycloak.py: $module_utils/keycloak.py:
maintainers: eikef maintainers: eikef
$module_utils/letsencrypt.py:
maintainers: mgruener resmo felixfontein
$module_utils/manageiq.py: $module_utils/manageiq.py:
maintainers: $team_manageiq maintainers: $team_manageiq
$module_utils/network/meraki: $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)." (CA), run for the public's benefit. For details see U(https://letsencrypt.org)."
- "This module only works with the ACME v2 protocol." - "This module only works with the ACME v2 protocol."
extends_documentation_fragment: extends_documentation_fragment:
- letsencrypt - acme
options: options:
state: state:
description: description:
@ -111,7 +111,7 @@ account_uri:
type: string type: string
''' '''
from ansible.module_utils.letsencrypt import ( from ansible.module_utils.acme import (
ModuleFailException, ACMEAccount ModuleFailException, ACMEAccount
) )

View file

@ -43,7 +43,7 @@ description:
- "Note: this module was called C(letsencrypt) before Ansible 2.6. The usage - "Note: this module was called C(letsencrypt) before Ansible 2.6. The usage
did not change." did not change."
extends_documentation_fragment: extends_documentation_fragment:
- letsencrypt - acme
options: options:
account_email: account_email:
description: description:
@ -291,7 +291,7 @@ account_uri:
version_added: "2.5" 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 ModuleFailException, fetch_url, write_file, nopad_b64, simple_get, ACMEAccount
) )