ansible-roles/nextcloud/tasks/main.yml
Jérémy Lecour 28be7d1218 nextcloud: intall one instance at a time
* introduce many variable with sensible defaults
* generate an admin password if none is provided (default)
* execute occ commands as unprivileged user
2018-03-29 08:35:26 +02:00

37 lines
512 B
YAML

---
- name: Install dependencies
apt:
name: "{{ item }}"
state: present
with_items:
- bzip2
- php-ctype
- php-gd
- php-json
- php-xml
- php-mbstring
- php-zip
- php-pdo-mysql
- php-curl
- php-bz2
- php-intl
- php-mcrypt
- php-ldap
- php-imap
- php-gmp
- php-apcu
- php-redis
- python-mysqldb
tags:
- nextcloud
- include: user.yml
- include: archive.yml
- include: vhost.yml
- include: mysql.yml
- include: config.yml