Install the correct f23/f24 specific sets

This commit is contained in:
Kevin Fenzi 2016-07-30 19:19:46 +00:00
parent 244845d805
commit 2eca5f1038

View file

@ -52,19 +52,19 @@
- jenkins/slave
- packages
- name: install f23 and higher specific slave packages
- name: install f23 specific slave packages
dnf: name={{ item }} state=installed
with_items: "{{ f23_only }}"
when: ansible_distribution_major_version|int > 22
when: ansible_distribution_major_version|int == 23
tags:
- jenkins
- jenkins/slave
- packages
- name: install f24 and higher specific slave packages
- name: install f24 specific slave packages
dnf: name={{ item }} state=installed
with_items: "{{ f24_only }}"
when: ansible_distribution_major_version|int > 23
when: ansible_distribution_major_version|int == 24
tags:
- jenkins
- jenkins/slave