- name: Gather the package facts
ansible.builtin.package_facts:
manager: auto
- name: Get HAProxy version
command: haproxy -v
register: haproxy_version_result
ignore_errors: True
become: yes
when: "'haproxy' in ansible_facts.packages"
- name: Uninstall HAProxy 1.8 version
apt:
name: haproxy=1.8.*
state: absent
become: yes
when: ( "'1.8.' in haproxy_version_result.stdout" )
- name: install HAProxy 2.2 version
apt:
name: haproxy=2.2.*
state: present
update_cache: yes
become: yes
when: ( "'2.2.*' not in haproxy_version_result" )
unable to remove the 1.8 packages so haproxy falling 2.2