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
|
|
|
|
php_source_make_command: "make --jobs=2"
|
2016-05-12 05:45:27 +02:00
|
|
|
php_source_version: "php-7.0.5"
|
2016-03-04 03:24:47 +01:00
|
|
|
php_memory_limit: "192M"
|
2016-02-16 17:25:40 +01:00
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: Ensure build dependencies are installed (RedHat).
|
2016-09-18 01:42:47 +02:00
|
|
|
package: name=which state=present
|
2016-02-16 17:25:40 +01:00
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
|
|
|
roles:
|
2016-09-14 23:22:10 +02:00
|
|
|
- geerlingguy.git
|
2016-02-16 17:25:40 +01:00
|
|
|
- role_under_test
|