From 3e62871e6c77bbf563286e67016f50699b04ab10 Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Thu, 27 Nov 2025 14:34:04 -0500 Subject: [PATCH] Add missing ansible.utils collection to requirements.yml (#14880) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ansible.utils.ipmath filter is used in config.cfg and WireGuard templates but the collection was not listed in requirements.yml. This causes 'No filter named ipmath' errors for users who install ansible-core separately rather than the full ansible package. Fixes #14879 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- requirements.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.yml b/requirements.yml index 137c8932..f0594d3c 100644 --- a/requirements.yml +++ b/requirements.yml @@ -2,6 +2,8 @@ collections: - name: ansible.posix version: "==2.1.0" + - name: ansible.utils + version: ">=4.0.0" - name: community.general version: "==11.1.0" - name: community.crypto