nextcloud/roles/apps
2021-11-21 08:29:12 +01:00
..
defaults feat(apps): allow checking app integrity 2021-11-21 08:29:12 +01:00
handlers
tasks feat(apps): allow checking app integrity 2021-11-21 08:29:12 +01:00
vars
README.md

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