Korrigiere Prüfung
This commit is contained in:
parent
e70fcd9104
commit
9c203bba17
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
||||||
dest: "{{ nextcloud_install_path }}/apps/files_pdfviewer/js/files_pdfviewer-main.js"
|
dest: "{{ nextcloud_install_path }}/apps/files_pdfviewer/js/files_pdfviewer-main.js"
|
||||||
owner: "{{ instance.user }}"
|
owner: "{{ instance.user }}"
|
||||||
group: "{{ 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"
|
- name: "fixes: {{ instance.domain }}: https://github.com/nextcloud/server/pull/27015"
|
||||||
get_url:
|
get_url:
|
||||||
|
@ -13,4 +13,4 @@
|
||||||
dest: "{{ nextcloud_install_path }}/apps/files_trashbin/lib/Storage.php"
|
dest: "{{ nextcloud_install_path }}/apps/files_trashbin/lib/Storage.php"
|
||||||
owner: "{{ instance.user }}"
|
owner: "{{ instance.user }}"
|
||||||
group: "{{ instance.user }}"
|
group: "{{ instance.user }}"
|
||||||
when: nc_installed_version.stdout <= "21.0.2"
|
when: (nc_installed_version.stdout|int) <= 21.0.2
|
||||||
|
|
Loading…
Reference in a new issue