From 845aad67bec34cae00009cb6e554beb3ee360c93 Mon Sep 17 00:00:00 2001 From: Didr Date: Mon, 25 Aug 2025 14:32:33 +0200 Subject: [PATCH 1/3] Fix spelling error in ansible.utils.resolveable_test --- docs/ansible.utils.resolvable_test.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ansible.utils.resolvable_test.rst b/docs/ansible.utils.resolvable_test.rst index a1fe6ef1..20a26fa9 100644 --- a/docs/ansible.utils.resolvable_test.rst +++ b/docs/ansible.utils.resolvable_test.rst @@ -17,7 +17,7 @@ Version added: 2.2.0 Synopsis -------- -- This plugin checks if the provided IP address of host name can be resolved using /etc/hosts or DNS +- This plugin checks if the provided IP address or host name can be resolved using /etc/hosts or DNS From 66384f9d3713b32632277d16a32eebeef76705a0 Mon Sep 17 00:00:00 2001 From: Didr Date: Mon, 25 Aug 2025 14:33:02 +0200 Subject: [PATCH 2/3] Fix spelling error in ansible.utils.resolveable_test --- plugins/test/resolvable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/test/resolvable.py b/plugins/test/resolvable.py index c7ef7123..72592895 100644 --- a/plugins/test/resolvable.py +++ b/plugins/test/resolvable.py @@ -31,7 +31,7 @@ version_added: "2.2.0" short_description: Test if an IP or name can be resolved via /etc/hosts or DNS description: - - This plugin checks if the provided IP address of host name can be resolved using /etc/hosts or DNS + - This plugin checks if the provided IP address or host name can be resolved using /etc/hosts or DNS options: host: description: From cf62dc8a323db199b3b87d92550e188cb035432a Mon Sep 17 00:00:00 2001 From: Didr Date: Mon, 8 Sep 2025 10:03:59 +0200 Subject: [PATCH 3/3] Add changelog fragment for fixing resolveable test synopsis in docs --- changelogs/fragments/fix_description.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/changelogs/fragments/fix_description.yaml b/changelogs/fragments/fix_description.yaml index 88ecc314..3b831207 100644 --- a/changelogs/fragments/fix_description.yaml +++ b/changelogs/fragments/fix_description.yaml @@ -1,3 +1,4 @@ --- doc_changes: - Fix the description of the reduce_on_network filter. + - Fix the synopsis of the resolveable test.