Korrigiere Prüfung

This commit is contained in:
phil 2021-08-08 11:59:41 +02:00
parent e70fcd9104
commit 9c203bba17

View file

@ -5,7 +5,7 @@
dest: "{{ nextcloud_install_path }}/apps/files_pdfviewer/js/files_pdfviewer-main.js"
owner: "{{ instance.user }}"
group: "{{ instance.user }}"
when: nc_installed_version.stdout <= "21.0.2"
when: (nc_installed_version.stdout|int) <= 21.0.2
- name: "fixes: {{ instance.domain }}: https://github.com/nextcloud/server/pull/27015"
get_url:
@ -13,4 +13,4 @@
dest: "{{ nextcloud_install_path }}/apps/files_trashbin/lib/Storage.php"
owner: "{{ instance.user }}"
group: "{{ instance.user }}"
when: nc_installed_version.stdout <= "21.0.2"
when: (nc_installed_version.stdout|int) <= 21.0.2