From 2cbcd29f3e9a8eb56f522ccfc8eb753538b4dc37 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 21:43:10 +0200 Subject: [PATCH] [PR #11931/dab3fa36 backport][stable-12] lldp: fix docs (#11935) lldp: fix docs (#11931) * lldp: fix docs * wording * remove check mode (cherry picked from commit dab3fa36de5031e48d8101530b84466bbae05ab8) Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --- plugins/modules/lldp.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/plugins/modules/lldp.py b/plugins/modules/lldp.py index 03131f50f6..857fb5c462 100644 --- a/plugins/modules/lldp.py +++ b/plugins/modules/lldp.py @@ -8,10 +8,11 @@ from __future__ import annotations DOCUMENTATION = r""" module: lldp -requirements: [lldpctl] +requirements: + - C(lldpctl), usually provided by the C(lldpd) package. short_description: Get details reported by LLDP description: - - Reads data out of C(lldpctl). + - Reads LLDP data from C(lldpd) using the CLI tool C(lldpctl). extends_documentation_fragment: - community.general.attributes attributes: @@ -21,7 +22,7 @@ attributes: support: none options: multivalues: - description: If lldpctl outputs an attribute multiple time represent all values as a list. + description: If C(lldpctl) outputs an attribute multiple time represent all values as a list. type: bool default: false author: "Andy Hill (@andyhky)"