Saltstack Official PHP Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
604B

  1. # Manages the php cli main ini file
  2. {%- set tplroot = tpldir.split('/')[0] %}
  3. {%- from tplroot ~ "/map.jinja" import php with context %}
  4. {%- from tplroot ~ "/ini.jinja" import php_ini %}
  5. {%- set settings = php.xcache.ini.defaults %}
  6. {%- for key, value in php.xcache.ini.settings.items() %}
  7. {%- if settings[key] is defined %}
  8. {%- do settings[key].update(value) %}
  9. {%- else %}
  10. {%- do settings.update({key: value}) %}
  11. {%- endif %}
  12. {%- endfor %}
  13. php_xcache_ini:
  14. {{ php_ini(php.lookup.xcache.ini,
  15. 'php_xcache_ini',
  16. php.xcache.ini.opts,
  17. settings
  18. ) }}