chore: rename roles to reflect upstream naming scheme

This commit is contained in:
2021-10-16 15:14:50 +02:00
parent 6d383fb81d
commit 1caf613ff2
16 changed files with 3 additions and 3 deletions

23
roles/apps/README.md Normal file
View File

@ -0,0 +1,23 @@
# `finallycoffee.nextcloud.nextcloud-apps` ansible role
This role can be used to install/update, remove, enable and disable
nextcloud apps.
## Examples
```yaml
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
```