mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
22 lines
428 B
YAML
22 lines
428 B
YAML
---
|
|
- name: Add ppa Repository
|
|
sudo: yes
|
|
apt_repository: repo=ppa:ondrej/{{ php.ppa }} update_cache=yes
|
|
|
|
- name: Install php5
|
|
sudo: yes
|
|
apt: pkg=php5 state=latest
|
|
|
|
- name: Install php5.6-fpm
|
|
sudo: yes
|
|
apt: pkg=php5.6-fpm state=latest
|
|
|
|
- name: Install PHP Packages
|
|
sudo: yes
|
|
apt: pkg={{ item }} state=latest
|
|
with_items: php.packages
|
|
when: php.packages is defined
|
|
|
|
- include: configure.yml
|
|
- include: pecl.yml
|