ansible-roles/nextcloud/tasks/main.yml

33 lines
508 B
YAML
Raw Normal View History

2018-03-23 14:27:56 +01:00
---
- name: Install dependencies
apt:
name: "{{ item }}"
state: present
with_items:
2018-03-24 21:22:03 +01:00
- 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
2018-03-23 14:27:56 +01:00
tags:
2018-03-24 21:22:03 +01:00
- nextcloud
2018-03-23 14:27:56 +01:00
- include: user.yml
- include: archive.yml
- include: vhost.yml
2018-03-23 14:27:56 +01:00
- include: mysql.yml
- include: config.yml