Files
2023-12-19 13:13:33 +01:00

22 lines
707 B
YAML

---
- name: "{{ nextcloud_path }}: Run Updater.phar"
become: true
become_user: "{{ nextcloud_user }}"
shell:
chdir: "{{ nextcloud_path }}/updater"
cmd: "alias \"php={{ php_binary }} {{ php_arguments }}\"; php {{ nextcloud_path }}/updater/updater.phar --no-interaction"
- name: "{{ nextcloud_path }}: Disable Maintenance-Mode"
include_tasks: "occ_command.yml"
vars:
occ_command: "maintenance:mode --off"
- name: "{{ nextcloud_path }}: Run Updater Part 2"
include_tasks: "occ_command.yml"
vars:
occ_command: "upgrade --no-interaction"
- name: "{{ nextcloud_path }}: Disable Maintenance-Mode"
include_tasks: "occ_command.yml"
vars:
occ_command: "maintenance:mode --off"