From 208168ee4c1307ff4e71c071d5622f23379adbca Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Thu, 4 Apr 2024 12:12:53 -0700 Subject: [PATCH] apt: add a note about extraneous quotes in package name (#82960) * add a note for user to not to include extraneous single or double quotes while specifying package name with a specific version. Fixes: #82763 Signed-off-by: Abhijeet Kasurde --- lib/ansible/modules/apt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/apt.py b/lib/ansible/modules/apt.py index e811b6aae88..cc5edd0f6d9 100644 --- a/lib/ansible/modules/apt.py +++ b/lib/ansible/modules/apt.py @@ -21,6 +21,7 @@ options: description: - A list of package names, like V(foo), or package specifier with version, like V(foo=1.0) or V(foo>=1.0). Name wildcards (fnmatch) like V(apt*) and version wildcards like V(foo=1.0*) are also supported. + - Do not use single or double quotes around the version when referring to the package name with a specific version, such as V(foo=1.0) or V(foo>=1.0). aliases: [ package, pkg ] type: list elements: str