Fixes #76: Wrong variable 'php_installed_version'.

This commit is contained in:
Jeff Geerling 2016-02-16 21:35:19 -06:00
parent 07fe90f888
commit e7a4fe4c05

View File

@ -45,7 +45,7 @@
when: php_install_from_source == true
- name: Check the installed version of PHP.
shell: '{{ php_executable }} -r "echo php_installed_version;"'
shell: '{{ php_executable }} -r "echo PHP_VERSION;"'
register: php_installed_version
changed_when: false
always_run: yes