File tree 1 file changed +19
-1
lines changed 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 3
3
# OS family. This simplifies a lot of things for roles that support
4
4
# Kali Linux, so it makes sense to force the installation of Ansible
5
5
# 2.10 or newer.
6
- ansible >= 2.10 ,< 6
6
+ #
7
+ # We need at least version 6 to correctly identify Amazon Linux 2023
8
+ # as using the dnf package manager, and version 8 is currently the
9
+ # oldest supported version.
10
+ #
11
+ # We have tested against version 9. We want to avoid automatically
12
+ # jumping to another major version without testing, since there are
13
+ # often breaking changes across major versions. This is the reason
14
+ # for the upper bound.
15
+ ansible >= 8 ,< 10
16
+ # TODO: Remove this pin when possible. See
17
+ # cisagov/skeleton-ansible-role#178 for more details.
18
+ #
19
+ # ansible-core 2.16.3 and later suffer from the bug discussed in
20
+ # ansible/ansible#82702, which breaks any symlinked files in vars,
21
+ # tasks, etc. for any Ansible role installed via ansible-galaxy.
22
+ #
23
+ # See also cisagov/skeleton-packer#312.
24
+ ansible-core < 2.16.3
7
25
setuptools
8
26
wheel
You can’t perform that action at this time.
0 commit comments