Explorar el Código

feat(php-fpm): restart php-fpm after an extension install

pull/225/head
Sean Molenaar hace 6 años
padre
commit
a3bd46ca54
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      php/installed.jinja

+ 9
- 0
php/installed.jinja Ver fichero

@@ -109,6 +109,15 @@ php_install_{{ state }}:
- enablerepo: {{ enable_php_repo }}
{% endif %}

{% set service = salt['pillar.get']('php:lookup:fpm:service', 'php-fpm') %}
{% if salt['service.status'](service, False) %}
{{ service }}_restart_{{ state }}:
service.running:
- name: {{ service }}
- watch:
- pkg: php_install_{{ state }}
{% endif %}

{% for pkg in specials %}

php_install_{{ state }}_{{ pkg.get('name') | replace("/", "-") }}:

Cargando…
Cancelar
Guardar