php-formula/php/ng/cli/init.sls

24 lines
555 B
Plaintext
Raw Normal View History

2014-06-06 19:14:44 +02:00
# Installs php-cli and manages the associated php.ini
include:
2019-07-28 07:05:22 +02:00
- php.ng.deprecated
2014-06-06 19:14:44 +02:00
- php.ng.cli.install
- php.ng.cli.ini
{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
extend:
{% for version in pillar_php_ng_version %}
php_cli_ini_{{ version }}:
file:
- require:
- sls: php.ng.cli.install
{% endfor %}
{% else %}
2014-06-06 19:14:44 +02:00
extend:
php_cli_ini:
file:
- require:
- sls: php.ng.cli.install
{% endif %}