Install the correct f23/f24 specific sets
This commit is contained in:
parent
244845d805
commit
2eca5f1038
1 changed files with 4 additions and 4 deletions
|
@ -52,19 +52,19 @@
|
||||||
- jenkins/slave
|
- jenkins/slave
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: install f23 and higher specific slave packages
|
- name: install f23 specific slave packages
|
||||||
dnf: name={{ item }} state=installed
|
dnf: name={{ item }} state=installed
|
||||||
with_items: "{{ f23_only }}"
|
with_items: "{{ f23_only }}"
|
||||||
when: ansible_distribution_major_version|int > 22
|
when: ansible_distribution_major_version|int == 23
|
||||||
tags:
|
tags:
|
||||||
- jenkins
|
- jenkins
|
||||||
- jenkins/slave
|
- jenkins/slave
|
||||||
- packages
|
- packages
|
||||||
|
|
||||||
- name: install f24 and higher specific slave packages
|
- name: install f24 specific slave packages
|
||||||
dnf: name={{ item }} state=installed
|
dnf: name={{ item }} state=installed
|
||||||
with_items: "{{ f24_only }}"
|
with_items: "{{ f24_only }}"
|
||||||
when: ansible_distribution_major_version|int > 23
|
when: ansible_distribution_major_version|int == 24
|
||||||
tags:
|
tags:
|
||||||
- jenkins
|
- jenkins
|
||||||
- jenkins/slave
|
- jenkins/slave
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue