From e603f655f358f33c66d96e69f382e850f47a15a8 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Fri, 8 Mar 2024 15:20:48 -0500 Subject: [PATCH] Pin ansible-core to earlier than 2.16.3 ansible-core 2.16.3 and later suffer from the bug discussed in ansible/ansible#82702, which breaks any symlinked files in vars, tasks, etc. for any Ansible role installed via ansible-galaxy. --- requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/requirements.txt b/requirements.txt index c0b40d80..0a43002b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,6 +13,10 @@ # often breaking changes across major versions. This is the reason # for the upper bound. ansible>=8,<10 +# ansible-core 2.16.3 and later suffer from the bug discussed in +# ansible/ansible#82702, which breaks any symlinked files in vars, +# tasks, etc. for any Ansible role installed via ansible-galaxy. +ansible-core<2.16.3 boto3 docopt semver