mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
20 lines
374 B
YAML
20 lines
374 B
YAML
---
|
|
- stat: path=/etc/php/{{ phpversion }}/apache2/php.ini
|
|
register: modphp
|
|
|
|
- stat: path=/etc/php/{{ phpversion }}/fpm/php.ini
|
|
register: phpfpm
|
|
|
|
- stat: path=/etc/php/{{ phpversion }}/cli/php.ini
|
|
register: phpcli
|
|
|
|
- include: php-fpm.yml
|
|
when: phpfpm.stat.exists
|
|
|
|
- include: php-cli.yml
|
|
when: phpcli.stat.exists
|
|
|
|
- include: mod-php.yml
|
|
when: modphp.stat.exists
|
|
|