Browse Source

fix(pillar): fix pillar.get still looking under 'ng' namespace

tags/v1.0.1
Nicolas Rodriguez 5 years ago
parent
commit
378b5b1d37
5 changed files with 23 additions and 23 deletions
  1. +4
    -4
      php/cli/ini.sls
  2. +4
    -4
      php/fpm/config.sls
  3. +5
    -5
      php/fpm/init.sls
  4. +3
    -3
      php/fpm/pools_config.sls
  5. +7
    -7
      php/installed.jinja

+ 4
- 4
php/cli/ini.sls View File

{% endif %} {% endif %}
{% endfor %} {% endfor %}


{% 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 %}
{% for version in pillar_php_ng_version %}
{% set first_version = pillar_php_ng_version[0]|string %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
{% set first_version = pillar_php_version[0]|string %}
{% set ini = php.lookup.cli.ini|replace(first_version, version) %} {% set ini = php.lookup.cli.ini|replace(first_version, version) %}
php_cli_ini_{{ version }}: php_cli_ini_{{ version }}:
{{ php_ini(ini, php.cli.ini.opts, settings) }} {{ php_ini(ini, php.cli.ini.opts, settings) }}

+ 4
- 4
php/fpm/config.sls View File

{% endif %} {% endif %}
{% endfor %} {% endfor %}


{% 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 %}
{% for version in pillar_php_ng_version %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
{% set conf_settings = odict(php.lookup.fpm.defaults) %} {% set conf_settings = odict(php.lookup.fpm.defaults) %}
{% set first_version = pillar_php_ng_version[0]|string %}
{% set first_version = pillar_php_version[0]|string %}
{% set ini = php.lookup.fpm.ini|replace(first_version, version) %} {% set ini = php.lookup.fpm.ini|replace(first_version, version) %}
{% set conf = php.lookup.fpm.conf|replace(first_version, version) %} {% set conf = php.lookup.fpm.conf|replace(first_version, version) %}
{% set pools = php.lookup.fpm.pools|replace(first_version, version) %} {% set pools = php.lookup.fpm.pools|replace(first_version, version) %}

+ 5
- 5
php/fpm/init.sls View File

- php.fpm.service - php.fpm.service
- php.fpm.pools - php.fpm.pools


{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
extend: extend:
php_fpm_service: php_fpm_service:
service: service:
- watch: - watch:
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
{% for version in pillar_php_ng_version %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
- file: php_fpm_ini_config_{{ version }} - file: php_fpm_ini_config_{{ version }}
- file: php_fpm_conf_config_{{ version }} - file: php_fpm_conf_config_{{ version }}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
- require: - require:
- sls: php.fpm.config - sls: php.fpm.config
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
{% for version in pillar_php_ng_version %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
php_fpm_ini_config_{{ version }}: php_fpm_ini_config_{{ version }}:
file: file:
- require: - require:

+ 3
- 3
php/fpm/pools_config.sls View File

{% endfor %} {% endfor %}
{% set state = 'php_fpm_pool_conf_' ~ loop.index0 %} {% set state = 'php_fpm_pool_conf_' ~ loop.index0 %}


{% 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 %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% set first_fpath = path_join(config.get('filename', pool), php.lookup.fpm.pools) %} {% set first_fpath = path_join(config.get('filename', pool), php.lookup.fpm.pools) %}
{% set first_version = pillar_php_ng_version[0]|string %}
{% set first_version = pillar_php_version[0]|string %}
{% set fpath = first_fpath.replace(first_version, config.get('phpversion', '7.0')) %} {% set fpath = first_fpath.replace(first_version, config.get('phpversion', '7.0')) %}
{% else %} {% else %}
{% set fpath = path_join(config.get('filename', pool), php.lookup.fpm.pools) %} {% set fpath = path_join(config.get('filename', pool), php.lookup.fpm.pools) %}

+ 7
- 7
php/installed.jinja View File

{% set pkgs = [] %} {% set pkgs = [] %}
{% set specials = [] %} {% set specials = [] %}


{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pkginfo is iterable and pkginfo is not string %} {% if pkginfo is iterable and pkginfo is not string %}
{% for pkg in pkginfo %} {% for pkg in pkginfo %}
{% if pkg is mapping %} {% if pkg is mapping %}
{% do specials.append(pkg) %} {% do specials.append(pkg) %}
{% else %} {% else %}
{% do pkgs.append(pkg) %} {% do pkgs.append(pkg) %}
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
{% set first_version = pillar_php_ng_version[0]|string %}
{% for other_version in pillar_php_ng_version %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% set first_version = pillar_php_version[0]|string %}
{% for other_version in pillar_php_version %}
{% set other_version_str = other_version|string %} {% set other_version_str = other_version|string %}
{% do pkgs.append(pkg.replace(first_version, other_version_str)) %} {% do pkgs.append(pkg.replace(first_version, other_version_str)) %}
{% endfor %} {% endfor %}
{% endfor %} {% endfor %}
{% else %} {% else %}
{% do pkgs.append(pkginfo) %} {% do pkgs.append(pkginfo) %}
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
{% set first_version = pillar_php_ng_version[0]|string %}
{% for other_version in pillar_php_ng_version %}
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% set first_version = pillar_php_version[0]|string %}
{% for other_version in pillar_php_version %}
{% set other_version_str = other_version|string %} {% set other_version_str = other_version|string %}
{% do pkgs.append(pkginfo.replace(first_version, other_version_str)) %} {% do pkgs.append(pkginfo.replace(first_version, other_version_str)) %}
{% endfor %} {% endfor %}

Loading…
Cancel
Save