Skip to content
Snippets Groups Projects
Commit 6a6efa4b authored by jurgenhaas's avatar jurgenhaas
Browse files

Patch core for session issues

parent 8a388d0d
No related branches found
No related tags found
No related merge requests found
......@@ -94,3 +94,6 @@ nextcloud_plugins_missing_26:
- ransomware_protection
- timetracker
- webapppassword
nextcloud_patches:
- id: 45093
url: https://github.com/nextcloud/server/pull/45093
......@@ -132,6 +132,25 @@
tags:
- deploy
- name: Download patches
get_url:
url: '{{ item.url }}.patch'
dest: '/tmp/{{ item.id }}.patch'
with_items: '{{ nextcloud_patches }}'
tags:
- deploy
- name: Apply patches
patch:
src: '/tmp/{{ item.id }}.patch'
basedir: '{{ webRoot }}'
strip: 1
remote_src: yes
with_items: '{{ nextcloud_patches }}'
tags:
- deploy
ignore_errors: yes
- name: Restart Docker Compose
command: docker compose up -d --force-recreate --quiet-pull --remove-orphans
args:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment