nextcloud/roles/apps
transcaffeine 95aff397b8
fix(apps): ignore comparisons on container restart, migrate to fully qualified module names
2024-07-27 21:34:43 +02:00
..
defaults feat(apps): allow checking app integrity 2021-11-21 08:29:12 +01:00
handlers fix(apps): ignore comparisons on container restart, migrate to fully qualified module names 2024-07-27 21:34:43 +02:00
tasks fix(apps): ignore comparisons on container restart, migrate to fully qualified module names 2024-07-27 21:34:43 +02:00
vars fix(apps): specify occ command 2021-11-01 16:40:45 +01:00
README.md chore: rename roles to reflect upstream naming scheme 2021-10-16 15:14:50 +02:00

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