Skip to content

Commit

Permalink
fix(fpm): be sure to restart all Php instances in case of multi-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez committed Sep 3, 2019
1 parent d4fc842 commit d4772f9
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 13 deletions.
36 changes: 23 additions & 13 deletions php/fpm/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,49 @@ include:
- php.fpm.pools

{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}

extend:
php_fpm_service:
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}

php_fpm_service_{{ version }}:
service:
- watch:
{% 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_conf_config_{{ version }}
{% endfor %}
{% else %}
- file: php_fpm_ini_config
- file: php_fpm_conf_config
{% endif %}
- require:
- sls: php.fpm.config
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}

php_fpm_ini_config_{{ version }}:
file:
- require:
- pkg: php_install_fpm

php_fpm_conf_config_{{ version }}:
file:
- require:
- pkg: php_install_fpm
{% endfor %}
{% else %}

{% endfor %}

{% else %}

php_fpm_service:
service:
- watch:
- file: php_fpm_ini_config
- file: php_fpm_conf_config
- require:
- sls: php.fpm.config

php_fpm_ini_config:
file:
- require:
- pkg: php_install_fpm

php_fpm_conf_config:
file:
- require:
- pkg: php_install_fpm
{% endif %}

{% endif %}
19 changes: 19 additions & 0 deletions php/fpm/pools.sls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,31 @@ include:
- php.fpm.service
- php.fpm.pools_config
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
{% if pool_states %}
extend:
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
php_fpm_service_{{ version }}:
service:
- watch:
{{ file_requisites(pool_states) }}
- require:
{{ file_requisites(pool_states) }}
{% endfor %}
{% else %}
php_fpm_service:
service:
- watch:
{{ file_requisites(pool_states) }}
- require:
{{ file_requisites(pool_states) }}
{% endif %}
{% endif %}
20 changes: 20 additions & 0 deletions php/fpm/service.sls
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,28 @@
{% from "php/macro.jinja" import sls_block %}
{% set service_function = {True:'running', False:'dead'}.get(php.fpm.service.enabled) %}
{% set pillar_php_version = salt['pillar.get']('php:version', '7.0') %}
include:
- php.fpm.install
{% if pillar_php_version is iterable and pillar_php_version is not string %}
{% for version in pillar_php_version %}
php_fpm_service_{{ version }}:
service.{{ service_function }}:
{{ sls_block(php.fpm.service.opts) }}
- name: {{ 'php' ~ version ~ '-fpm' }}
- enable: {{ php.fpm.service.enabled }}
- require:
- sls: php.fpm.install
- watch:
- pkg: php_install_fpm
{% endfor %}
{% else %}
php_fpm_service:
service.{{ service_function }}:
{{ sls_block(php.fpm.service.opts) }}
Expand All @@ -16,3 +34,5 @@ php_fpm_service:
- sls: php.fpm.install
- watch:
- pkg: php_install_fpm
{% endif %}

0 comments on commit d4772f9

Please sign in to comment.