From a3e091f41b50109e38f366c2091492e2a6a22ebc Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Wed, 20 May 2026 07:42:55 -0600 Subject: [PATCH] refactor: use ansible.posix 2.1.X for EL7 compatibility [citest_skip] The recently released ansible.posix 2.2.0 does not work on EL7. Pin the version of ansible.posix to 2.1.X. NOTE: Even though this role might not support EL7, this update is applied to all system roles for consistency. Plus, when this role is part of the system roles collection, all roles must use the same version of ansible.posix - there is no way for a role which is part of a collection to use a different version of a dependency than the version used by the other roles. Signed-off-by: Rich Megginson --- meta/collection-requirements.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/collection-requirements.yml b/meta/collection-requirements.yml index 0ac11cea..db3c5607 100644 --- a/meta/collection-requirements.yml +++ b/meta/collection-requirements.yml @@ -2,5 +2,6 @@ --- collections: - name: ansible.posix + version: '>=2.1.0,<2.2.0' - name: community.general version: '>=6.6.0,<12.0.0'