Fixes #45: Automatically add PHP FPM symlink when building from source.

This commit is contained in:
Jeff Geerling 2015-07-05 22:21:58 -05:00
parent cbbf926b74
commit d915fd9afb

View File

@ -100,3 +100,9 @@
src: "{{ php_source_install_path }}/bin/php"
dest: /usr/bin/php
state: link
- name: Ensure php-fpm executable is symlinked into a standard path.
file:
src: "{{ php_source_install_path }}/sbin/php-fpm"
dest: "/usr/sbin/{{ php_fpm_daemon }}"
when: "'--enable-fpm' in php_source_configure_command"