From 43217b9e705a2c7c8e1e00cb219c2fcfa727a356 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Mon, 1 Jul 2024 10:25:11 +0200 Subject: [PATCH] cert: Fix short_description tag, add chain option, remove authors Several fixes for the DOCUMENTATION section: The short_description tag was 'short description', the chain option was missing and the unknown authers tag has been removed. --- plugins/modules/ipacert.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/modules/ipacert.py b/plugins/modules/ipacert.py index c88d4d1e..6c9b760d 100644 --- a/plugins/modules/ipacert.py +++ b/plugins/modules/ipacert.py @@ -34,7 +34,7 @@ ANSIBLE_METADATA = { DOCUMENTATION = """ --- module: ipacert -short description: Manage FreeIPA certificates +short_description: Manage FreeIPA certificates description: Manage FreeIPA certificates extends_documentation_fragment: - ipamodule_base_docs @@ -67,6 +67,10 @@ options: description: Name of the issuing certificate authority. type: str required: false + chain: + description: Include certificate chain in output. + type: bool + required: false serial_number: description: | Certificate serial number. Cannot be used with `state: requested`. @@ -102,7 +106,6 @@ options: required: true type: str author: -authors: - Sam Morris (@yrro) - Rafael Guterres Jeffman (@rjeffman) """ -- GitLab