php-config-cli.ini.j2 342 B

1234567891011121314
  1. {% if ansible_controlled is defined and ansible_controlled != "" %}
  2. ;
  3. ; {{ ansible_controlled }}
  4. ;
  5. {% endif %}
  6. ;
  7. ; local PHP configuration overrides for php-cli
  8. ;
  9. {% if php_local_config is defined %}
  10. {% set _dummy = php_config.update(php_local_config) %}
  11. {% endif %}
  12. {% for key in php_config %}
  13. {{ key }} = {{ php_config[key] }}
  14. {% endfor %}