fixing typo in conditional
This commit is contained in:
parent
f97176b6e3
commit
d0aab39b1e
1 changed files with 2 additions and 2 deletions
|
@ -19,13 +19,13 @@
|
||||||
|
|
||||||
- name: ensure additional packages required for CI buildmaster are installed
|
- name: ensure additional packages required for CI buildmaster are installed
|
||||||
yum: name={{ item }} state=latest enablerepo={{ extra_enablerepos }}
|
yum: name={{ item }} state=latest enablerepo={{ extra_enablerepos }}
|
||||||
when: ansible_distribution_majorVersion|int < 22 and (deployment_type == 'qadevel-prod' or deployment_type == 'qa-stg')
|
when: ansible_distribution_major_version|int < 22 and (deployment_type == 'qadevel-prod' or deployment_type == 'qa-stg')
|
||||||
with_items:
|
with_items:
|
||||||
- python-novaclient
|
- python-novaclient
|
||||||
|
|
||||||
- name: ensure additional packages required for CI buildmaster are installed
|
- name: ensure additional packages required for CI buildmaster are installed
|
||||||
dnf: name={{ item }} state=latest enablerepo={{ extra_enablerepos }}
|
dnf: name={{ item }} state=latest enablerepo={{ extra_enablerepos }}
|
||||||
when: ansible_distribution_majorVersion|int > 21 and (deployment_type == 'qadevel-prod' or deployment_type == 'qa-stg')
|
when: ansible_distribution_major_version|int > 21 and (deployment_type == 'qadevel-prod' or deployment_type == 'qa-stg')
|
||||||
with_items:
|
with_items:
|
||||||
- python-novaclient
|
- python-novaclient
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue