mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-28 12:45:16 +01:00
Fixes #45: Automatically add PHP FPM symlink when building from source.
This commit is contained in:
parent
cbbf926b74
commit
d915fd9afb
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user