mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-30 13:03:26 +01:00
30 lines
707 B
YAML
30 lines
707 B
YAML
---
|
|
# Variable setup.
|
|
- name: Include OS-specific variables.
|
|
include_vars: "{{ ansible_os_family }}.yml"
|
|
|
|
- name: Define php_packages.
|
|
set_fact:
|
|
php_packages: "{{ __php_packages | list }}"
|
|
when: php_packages is not defined
|
|
|
|
- name: Define php_webserver_daemon.
|
|
set_fact:
|
|
php_webserver_daemon: "{{ __php_webserver_daemon }}"
|
|
when: php_webserver_daemon is not defined
|
|
|
|
- name: Define php_conf_path.
|
|
set_fact:
|
|
php_conf_path: "{{ __php_conf_path }}"
|
|
when: php_conf_path is not defined
|
|
|
|
# Setup/install tasks.
|
|
- include: setup-RedHat.yml
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- include: setup-Debian.yml
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
# Configure PHP.
|
|
- include: configure.yml
|