2020-08-17 04:35:58 -07:00
|
|
|
{ python3Packages, fetchurl, fetchFromGitHub }:
|
2018-05-09 23:09:15 -07:00
|
|
|
|
2019-11-06 07:42:55 -08:00
|
|
|
rec {
|
2020-08-17 04:35:58 -07:00
|
|
|
ansible = ansible_2_10;
|
|
|
|
|
2021-05-11 19:39:05 -07:00
|
|
|
ansible_2_10 = python3Packages.toPythonApplication python3Packages.ansible-base;
|
2019-02-24 13:52:48 -08:00
|
|
|
|
2021-05-11 19:48:07 -07:00
|
|
|
# End of support 2021/10/02, End of life 2021/12/31
|
2019-11-06 07:42:55 -08:00
|
|
|
ansible_2_9 = python3Packages.toPythonApplication python3Packages.ansible;
|
|
|
|
|
2021-05-11 19:48:44 -07:00
|
|
|
ansible_2_8 = throw "Ansible 2.8 went end of life on 2021/01/03 and has subsequently been dropped";
|
2018-05-09 23:09:15 -07:00
|
|
|
}
|