nextcloud/roles/apps
2021-10-16 15:14:50 +02:00
..
defaults chore: rename roles to reflect upstream naming scheme 2021-10-16 15:14:50 +02:00
handlers chore: rename roles to reflect upstream naming scheme 2021-10-16 15:14:50 +02:00
tasks chore: rename roles to reflect upstream naming scheme 2021-10-16 15:14:50 +02:00
README.md chore: rename roles to reflect upstream naming scheme 2021-10-16 15:14:50 +02:00

finallycoffee.nextcloud.nextcloud-apps ansible role

This role can be used to install/update, remove, enable and disable nextcloud apps.

Examples

nextcloud_apps:
  # Install cospend app
  - name: cospend
    state: present
  # Make sure mail app is installed, but not enabled
  - name: mail
    state: present
    enabled: no
  # Uninstall photos app
  - name: photos
    state: absent
  # Make sure federation app is always up-to-date
  - name: federation
    state: latest