f1b71d00ae
BREAKING CHANGES: users must adapt their pillar. See `docs.REAME.rst`
16 lines
478 B
Plaintext
16 lines
478 B
Plaintext
# Manages the php cli main ini file
|
|
{% from "php/map.jinja" import php with context %}
|
|
{% from "php/ini.jinja" import php_ini %}
|
|
|
|
{% set settings = php.xcache.ini.defaults %}
|
|
{% for key, value in php.xcache.ini.settings.items() %}
|
|
{% if settings[key] is defined %}
|
|
{% do settings[key].update(value) %}
|
|
{% else %}
|
|
{% do settings.update({key: value}) %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
php_xcache_ini:
|
|
{{ php_ini(php.lookup.xcache.ini, php.xcache.ini.opts, settings) }}
|