Saltstack Official PHP Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
895B

  1. # Manages the php cli main ini file
  2. {% from "php/map.jinja" import php with context %}
  3. {% from "php/ini.jinja" import php_ini %}
  4. {% set settings = php.ini.defaults %}
  5. {% for key, value in php.cli.ini.settings.items() %}
  6. {% if settings[key] is defined %}
  7. {% do settings[key].update(value) %}
  8. {% else %}
  9. {% do settings.update({key: value}) %}
  10. {% endif %}
  11. {% endfor %}
  12. {% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
  13. {% if pillar_php_version is iterable and pillar_php_version is not string %}
  14. {% for version in pillar_php_version %}
  15. {% set first_version = pillar_php_version[0]|string %}
  16. {% set ini = php.lookup.cli.ini|replace(first_version, version) %}
  17. php_cli_ini_{{ version }}:
  18. {{ php_ini(ini, php.cli.ini.opts, settings) }}
  19. {% endfor %}
  20. {% else %}
  21. php_cli_ini:
  22. {{ php_ini(php.lookup.cli.ini, php.cli.ini.opts, settings) }}
  23. {% endif %}