From 3c63d4080b9b9db4c2d2dada27930aea6f8ea995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20D=C3=BCster?= Date: Tue, 11 Nov 2025 17:16:38 +0100 Subject: [PATCH] fixup! deb822_repository: add include, exclude parameters --- lib/ansible/modules/deb822_repository.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/deb822_repository.py b/lib/ansible/modules/deb822_repository.py index d04f11927df..d4769ab9d8f 100644 --- a/lib/ansible/modules/deb822_repository.py +++ b/lib/ansible/modules/deb822_repository.py @@ -64,13 +64,13 @@ options: type: bool exclude: description: - - Controls which packages APT should use from the repository. + - Controls which packages APT should not use from the repository. - Mutually exclusive with O(include). type: list elements: str include: description: - - Controls which packages APT should not use from the repository. + - Controls which packages APT should use from the repository. - Mutually exclusive with O(exclude). type: list elements: str