From f98209f35dd750a5a0fd09525f3fbf4249047d6e Mon Sep 17 00:00:00 2001 From: Bernd Wachter Date: Fri, 1 Mar 2024 18:37:26 +0200 Subject: [PATCH] Bump minimum required version to 2.14 Next changes will break compatibility with Ansible 2.9. 2.14 is one version older than the last version supported by upstream - so should not be an issue for anyone. This also starts removal of compatibility code. --- tasks/check_versions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/check_versions.yml b/tasks/check_versions.yml index 5336768..eeb0712 100644 --- a/tasks/check_versions.yml +++ b/tasks/check_versions.yml @@ -1,8 +1,8 @@ - name: verify ansible version ansible.builtin.assert: - that: "ansible_version.full is version_compare('2.9.17', '>=')" + that: "ansible_version.full is version_compare('2.14.0', '>=')" msg: > - Minimum ansible version required for running this is 2.9.17 + Minimum ansible version required for running this is 2.14 tags: - base_config - access_setup