We are past RHEL 7.0 now

This commit is contained in:
Pierre-Yves Chibon 2015-05-07 21:00:12 +02:00
parent 26c02e8ce0
commit 850ef5a5cb

View file

@ -391,7 +391,7 @@
- python-straight-plugin
- pyflakes # Requested by user rholy (ticket #4175)
#- dia # Required by javapackages-tools ticket #4279
when: ansible_distribution_version != "7.0"
when: ansible_distribution_version[0] != "7"
tags:
- packages
@ -399,7 +399,7 @@
action: yum state=present pkg={{ item }}
with_items:
- python-pygit2 # Required for pagure
when: ansible_distribution_version == "7.0"
when: ansible_distribution_version[0] == "7"
tags:
- packages