New version of kio fix.

This commit is contained in:
Raphael Dannecker 2024-06-11 14:47:16 +02:00
parent 07ff7f258c
commit 9fa3b411ce

View file

@ -355,15 +355,15 @@
- name: Download kio debian package
ansible.builtin.get_url:
url: "http://livebox.pn.steinbeis.schule/kio/kio_5.103.0-1.1_amd64.deb"
dest: /tmp/kio_5.103.0-1.1_amd64.deb
url: "http://livebox.pn.steinbeis.schule/kio/kio_5.103.0-1+deb12u1_amd64.deb"
dest: /tmp/kio_5.103.0-1+deb12u1_amd64.deb
use_proxy: False
register: new_kio
when: kio_version.stdout is not search('5.103.0-1.1')
when: kio_version.stdout is not search('5.103.0-1+deb12u1')
- name: Install kio package manually
shell:
cmd: dpkg -i /tmp/kio_5.103.0-1.1_amd64.deb
cmd: dpkg -i /tmp/kio_5.103.0-1+deb12u1_amd64.deb
chdir: /tmp/
when: new_kio.changed | default(false)