fix(php/ng): don't iterate on string, make sure list is not string
This commit is contained in:
parent
a98aa7e81a
commit
dbb542c4fb
@ -11,11 +11,11 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
|
||||||
{% if salt['pillar.get']('php:ng:version') is iterable %}
|
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
{% for version in salt['pillar.get']('php:ng:version') %}
|
{% for version in pillar_php_ng_version %}
|
||||||
{% set conf_settings = odict(php.lookup.fpm.defaults) %}
|
{% set conf_settings = odict(php.lookup.fpm.defaults) %}
|
||||||
{% set first_version = salt['pillar.get']('php:ng:version')[0]|string %}
|
{% set first_version = pillar_php_ng_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,12 +5,13 @@ include:
|
|||||||
- php.ng.fpm.service
|
- php.ng.fpm.service
|
||||||
- php.ng.fpm.pools
|
- php.ng.fpm.pools
|
||||||
|
|
||||||
|
{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
|
||||||
extend:
|
extend:
|
||||||
php_fpm_service:
|
php_fpm_service:
|
||||||
service:
|
service:
|
||||||
- watch:
|
- watch:
|
||||||
{% if salt['pillar.get']('php:ng:version') is iterable %}
|
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
{% for version in salt['pillar.get']('php:ng:version') %}
|
{% for version in pillar_php_ng_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 %}
|
||||||
@ -20,8 +21,8 @@ extend:
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
- require:
|
- require:
|
||||||
- sls: php.ng.fpm.config
|
- sls: php.ng.fpm.config
|
||||||
{% if salt['pillar.get']('php:ng:version') is iterable %}
|
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
{% for version in salt['pillar.get']('php:ng:version') %}
|
{% for version in pillar_php_ng_version %}
|
||||||
php_fpm_ini_config_{{ version }}:
|
php_fpm_ini_config_{{ version }}:
|
||||||
file:
|
file:
|
||||||
- require:
|
- require:
|
||||||
|
@ -18,9 +18,10 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% set state = 'php_fpm_pool_conf_' ~ loop.index0 %}
|
{% set state = 'php_fpm_pool_conf_' ~ loop.index0 %}
|
||||||
|
|
||||||
{% if salt['pillar.get']('php:ng:version') is iterable %}
|
{% 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 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 = salt['pillar.get']('php:ng:version')[0]|string %}
|
{% set first_version = pillar_php_ng_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) %}
|
||||||
|
@ -10,15 +10,16 @@
|
|||||||
{% set pkgs = [] %}
|
{% set pkgs = [] %}
|
||||||
{% set specials = [] %}
|
{% set specials = [] %}
|
||||||
|
|
||||||
|
{% set pillar_php_ng_version = salt['pillar.get']('php:ng: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 salt['pillar.get']('php:ng:version') is iterable %}
|
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
{% set first_version = salt['pillar.get']('php:ng:version')[0]|string %}
|
{% set first_version = pillar_php_ng_version[0]|string %}
|
||||||
{% for other_version in salt['pillar.get']('php:ng:version') %}
|
{% for other_version in pillar_php_ng_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 %}
|
||||||
@ -27,9 +28,9 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% do pkgs.append(pkginfo) %}
|
{% do pkgs.append(pkginfo) %}
|
||||||
{% if salt['pillar.get']('php:ng:version') is iterable %}
|
{% if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
{% set first_version = salt['pillar.get']('php:ng:version')[0]|string %}
|
{% set first_version = pillar_php_ng_version[0]|string %}
|
||||||
{% for other_version in salt['pillar.get']('php:ng:version') %}
|
{% for other_version in pillar_php_ng_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 %}
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vim: ft=jinja
|
# vim: ft=jinja
|
||||||
|
|
||||||
{%- if salt['pillar.get']('php:ng:version') is iterable %}
|
{% set pillar_php_ng_version = salt['pillar.get']('php:ng:version', '7.0') %}
|
||||||
{%- set phpng_version = salt['pillar.get']('php:ng:version')[0]|string %}
|
{%- if pillar_php_ng_version is iterable and pillar_php_ng_version is not string %}
|
||||||
|
{%- set phpng_version = pillar_php_ng_version[0]|string %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{%- set phpng_version = salt['pillar.get']('php:ng:version', '7.0')|string %}
|
{%- set phpng_version = pillar_php_ng_version|string %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- set freebsd_phpng_version = phpng_version.replace('.', '') %}
|
{%- set freebsd_phpng_version = phpng_version.replace('.', '') %}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user