From d2812aeb6f2676c8277fff05a624a364819d7065 Mon Sep 17 00:00:00 2001 From: Alicia Cozine <879121+acozine@users.noreply.github.com> Date: Thu, 11 Jan 2024 13:10:07 -0600 Subject: [PATCH] Update example in apt module docs (#82504) All examples should use fully qualified collection names to avoid confusion. --- lib/ansible/modules/apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/apt.py b/lib/ansible/modules/apt.py index 3e5c3cf2007..6a3e16eba63 100644 --- a/lib/ansible/modules/apt.py +++ b/lib/ansible/modules/apt.py @@ -324,7 +324,7 @@ EXAMPLES = ''' purge: true - name: Run the equivalent of "apt-get clean" as a separate step - apt: + ansible.builtin.apt: clean: yes '''