mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 18:41:38 +08:00
fixing typo in conditional
This commit is contained in:
@@ -19,13 +19,13 @@
|
||||
|
||||
- name: ensure additional packages required for CI buildmaster are installed
|
||||
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:
|
||||
- python-novaclient
|
||||
|
||||
- name: ensure additional packages required for CI buildmaster are installed
|
||||
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:
|
||||
- python-novaclient
|
||||
|
||||
|
||||
Reference in New Issue
Block a user