mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-28 12:45:16 +01:00
18 lines
399 B
YAML
18 lines
399 B
YAML
|
---
|
||
|
- 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"
|
||
|
php_source_version: "php-7.0.3"
|
||
|
|
||
|
pre_tasks:
|
||
|
- name: Ensure build dependencies are installed (RedHat).
|
||
|
yum: name=which state=present
|
||
|
when: ansible_os_family == 'RedHat'
|
||
|
|
||
|
roles:
|
||
|
- role_under_test
|