2016-02-16 17:25:40 +01:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
|
|
|
|
vars:
|
|
|
|
php_enable_webserver: false
|
|
|
|
php_install_from_source: true
|
|
|
|
php_source_clone_dir: /root/php-src
|
2016-11-23 20:46:01 +01:00
|
|
|
# Workaround for https://github.com/ansible/ansible-modules-core/issues/5457
|
|
|
|
php_source_clone_depth: 0
|
2016-02-16 17:25:40 +01:00
|
|
|
php_source_make_command: "make --jobs=2"
|
2016-11-23 19:06:21 +01:00
|
|
|
php_source_version: "php-7.0.13"
|
2016-03-04 03:24:47 +01:00
|
|
|
php_memory_limit: "192M"
|
2016-02-16 17:25:40 +01:00
|
|
|
|
|
|
|
pre_tasks:
|
2016-09-18 02:35:07 +02:00
|
|
|
- name: Update apt cache.
|
2016-11-23 16:13:22 +01:00
|
|
|
apt: update_cache=yes cache_valid_time=600
|
2016-09-18 02:35:07 +02:00
|
|
|
when: ansible_os_family == 'Debian'
|
2016-11-23 17:40:54 +01:00
|
|
|
changed_when: false
|
2016-09-18 02:35:07 +02:00
|
|
|
|
2016-02-16 17:25:40 +01:00
|
|
|
roles:
|
2016-09-14 23:22:10 +02:00
|
|
|
- geerlingguy.git
|
2016-02-16 17:25:40 +01:00
|
|
|
- role_under_test
|