Skip to content

Commit

Permalink
nextcloud: Disable "logreader" default app until compatible with syslog.
Browse files Browse the repository at this point in the history
  • Loading branch information
JGoutin committed Apr 23, 2024
1 parent 9915e05 commit cd2fe70
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions roles/nextcloud/tasks/config_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@
changed_when: false
when: '"encryption" in nextcloud_applications'

- name: Ensure Nextcloud logreader application is disabled (Not compatible with syslog)
ansible.builtin.command: "/usr/bin/php occ -n app:disable logreader"
args:
chdir: /var/www/nextcloud/
become: true
become_user: nextcloud
ignore_errors: true # noqa ignore-errors
changed_when: false

- name: Ensure the TURN/STUN server is configured in the Spreed application
ansible.builtin.command: "/usr/bin/php occ -n config:app:set spreed {{ item.value }}"
args:
Expand Down

0 comments on commit cd2fe70

Please sign in to comment.