From 724cdbdbe80c718edcbfd21970373e34091e5bad Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 29 May 2020 00:06:17 +0200 Subject: [PATCH] Support action groups (#60) * Prepare for action groups PR (ansible/ansible#67291). * Remove removal_date (as removal_version is already specified). --- meta/action_groups.yml | 7 ------- meta/runtime.yml | 16 +++++++++++++--- 2 files changed, 13 insertions(+), 10 deletions(-) delete mode 100644 meta/action_groups.yml diff --git a/meta/action_groups.yml b/meta/action_groups.yml deleted file mode 100644 index 735302fc..00000000 --- a/meta/action_groups.yml +++ /dev/null @@ -1,7 +0,0 @@ -acme: -- acme_inspect -- acme_certificate_revoke -- acme_certificate -- acme_account -- acme_account_facts -- acme_account_info diff --git a/meta/runtime.yml b/meta/runtime.yml index 48f603fe..ecb99c15 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,17 +1,27 @@ +action_groups: + acme: + - acme_inspect + - acme_certificate_revoke + - acme_certificate + - acme_account + - acme_account_facts + - acme_account_info + +action_groups_redirection: + acme: + redirect: acme + plugin_routing: modules: acme_account_facts: deprecation: - removal_date: TBD removal_version: '2.12' warning_text: The 'community.crypto.acme_account_facts' module has been renamed to 'community.crypto.acme_account_info'. openssl_certificate: deprecation: - removal_date: TBD removal_version: '2.14' warning_text: The 'community.crypto.openssl_certificate' module has been renamed to 'community.crypto.x509_certificate' openssl_certificate_info: deprecation: - removal_date: TBD removal_version: '2.14' warning_text: The 'community.crypto.openssl_certificate_info' module has been renamed to 'community.crypto.x509_certificate_info'