mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Allow all of yum version compare operators (#54603)
* Allow all of yum version compare operators * * yum: name="foo >= VERSION" integration test * changelog fragment
This commit is contained in:
committed by
Martin Krizek
parent
221da3e8b1
commit
1532e31ec0
@@ -589,6 +589,56 @@
|
||||
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
|
||||
|
||||
# https://github.com/ansible/ansible/pull/54603
|
||||
- block:
|
||||
- name: Install foo < 1.1
|
||||
yum:
|
||||
name: "foo < 1.1"
|
||||
state: present
|
||||
register: yum_result
|
||||
|
||||
- name: Check foo with rpm
|
||||
shell: rpm -q foo
|
||||
register: rpm_result
|
||||
|
||||
- name: Verify installation
|
||||
assert:
|
||||
that:
|
||||
- "yum_result.changed"
|
||||
- "rpm_result.stdout.startswith('foo-1.0')"
|
||||
|
||||
- name: Install foo >= 1.1
|
||||
yum:
|
||||
name: "foo >= 1.1"
|
||||
state: present
|
||||
register: yum_result
|
||||
|
||||
- name: Check foo with rpm
|
||||
shell: rpm -q foo
|
||||
register: rpm_result
|
||||
|
||||
- name: Verify installation
|
||||
assert:
|
||||
that:
|
||||
- "yum_result.changed"
|
||||
- "rpm_result.stdout.startswith('foo-1.1')"
|
||||
|
||||
- name: Verify yum module outputs
|
||||
assert:
|
||||
that:
|
||||
- "'msg' in yum_result"
|
||||
- "'rc' in yum_result"
|
||||
- "'results' in yum_result"
|
||||
|
||||
always:
|
||||
- name: Clean up
|
||||
yum:
|
||||
name: foo
|
||||
state: absent
|
||||
|
||||
when: ansible_pkg_mgr == 'yum'
|
||||
|
||||
# https://github.com/ansible/ansible/issues/45250
|
||||
- block:
|
||||
- name: Install foo-1.0, foo-bar-1.0, bar-1.0
|
||||
|
||||
Reference in New Issue
Block a user