Merge pull request #48082 from sengaya/ansible-2.7
ansible: Update to latest supported releases
This commit is contained in:
commit
78a6ee6cfc
3 changed files with 15 additions and 5 deletions
|
@ -19,6 +19,10 @@ pythonPackages.buildPythonPackage rec {
|
||||||
patchShebangs bin/ansible-lint
|
patchShebangs bin/ansible-lint
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export HOME="$TMP"
|
||||||
|
'';
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
nosetests test
|
nosetests test
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -53,15 +53,20 @@ in rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
ansible_2_5 = generic {
|
ansible_2_5 = generic {
|
||||||
version = "2.5.2";
|
version = "2.5.11";
|
||||||
sha256 = "1r9sq30xz3jrvx6yqssj5wmkml1f75rx1amd7g89f3ryngrq6m59";
|
sha256 = "07rhgkl3a2ba59rqh9pyz1p661gc389shlwa2sw1m6wwifg4lm24";
|
||||||
};
|
};
|
||||||
|
|
||||||
ansible_2_6 = generic {
|
ansible_2_6 = generic {
|
||||||
version = "2.6.2";
|
version = "2.6.7";
|
||||||
sha256 = "1y5gd9h641p6pphwd7j99yyqglyj23rkmid7wgzk62611754qzkl";
|
sha256 = "10pakw9k9wd3cy1qk3ah2253ph7c7h3qzpal4k0s5lschzgy2fh0";
|
||||||
};
|
};
|
||||||
|
|
||||||
ansible2 = ansible_2_6;
|
ansible_2_7 = generic {
|
||||||
|
version = "2.7.1";
|
||||||
|
sha256 = "0fg95x2nr3j4rwnlyd2n03h91xx9fssi34c32356vk3z6ir395g7";
|
||||||
|
};
|
||||||
|
|
||||||
|
ansible2 = ansible_2_7;
|
||||||
ansible = ansible2;
|
ansible = ansible2;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8061,6 +8061,7 @@ with pkgs;
|
||||||
ansible_2_4
|
ansible_2_4
|
||||||
ansible_2_5
|
ansible_2_5
|
||||||
ansible_2_6
|
ansible_2_6
|
||||||
|
ansible_2_7
|
||||||
ansible2
|
ansible2
|
||||||
ansible;
|
ansible;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue