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

Disable maintenance mode before running upgrades

parent f23e2865
No related branches found
No related tags found
No related merge requests found
......@@ -222,48 +222,45 @@
- nextcloud
- rainloop
- block:
- name: Enable Plugins
command: '{{ webRoot }}/occ app:enable {{ item.id }} --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
with_items: '{{ nextcloud_plugins_public }}'
when: item.latest_release.version != plugin_versions[item.id]|default('0.0.0')
tags:
- deploy
- plugins
- name: Run Upgrade
command: '{{ webRoot }}/occ upgrade --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
tags:
- deploy
- plugins
- name: Enable Plugins
command: '{{ webRoot }}/occ app:enable {{ item.id }} --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
with_items: '{{ nextcloud_plugins_public }}'
when: installed and item.latest_release.version != plugin_versions[item.id]|default('0.0.0')
tags:
- deploy
- plugins
- name: Enable Plugins
command: '{{ webRoot }}/occ app:enable {{ item.id }} --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
with_items: '{{ nextcloud_plugins_public }}'
when: item.latest_release.version != plugin_versions[item.id]|default('0.0.0')
tags:
- deploy
- plugins
- name: Disable Maintenance Mode
command: '{{ webRoot }}/occ maintenance:mode --off --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
tags:
- deploy
- plugins
- name: Run Upgrade
command: '{{ webRoot }}/occ upgrade --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
when: installed
- name: Configure Spreed
include_tasks: spreed.yml
when: nextcloud.spreed is defined
tags:
- deploy
- plugins
- name: Disable Maintenance Mode
command: '{{ webRoot }}/occ maintenance:mode --off --no-interaction --no-warnings'
- name: Enable Plugins
command: '{{ webRoot }}/occ app:enable {{ item.id }} --no-interaction --no-warnings'
become_user: '{{ apacheUser }}'
ignore_errors: yes
with_items: '{{ nextcloud_plugins_public }}'
when: installed and item.latest_release.version != plugin_versions[item.id]|default('0.0.0')
tags:
- deploy
- plugins
- name: Configure Spreed
include_tasks: spreed.yml
when: nextcloud.spreed is defined
tags:
- deploy
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