Allow the php version to be overridden.

This commit is contained in:
David Lundgren 2020-08-24 17:13:21 -05:00
parent 3764e1662d
commit e7da34aa44

View File

@ -6,10 +6,11 @@
- files:
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
skip: true
- name: Set the default PHP version for Debian-based OSes.
set_fact:
php_default_version_debian: "{{ __php_default_version_debian }}"
when: ansible_os_family == 'Debian'
when: php_default_version_debian is not defined and ansible_os_family == 'Debian'
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"