Saltstack Official PHP Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
607B

  1. # Manages the php-fpm pools config files
  2. {% from 'php/ng/map.jinja' import php, sls_block with context %}
  3. {% from 'php/ng/fpm/pools_config.sls' import pool_states with context %}
  4. {% from 'php/ng/fpm/service.sls' import service_function with context %}
  5. {% macro file_requisites(states) %}
  6. {%- for state in states %}
  7. - file: {{ state }}
  8. {%- endfor -%}
  9. {% endmacro %}
  10. include:
  11. - php.ng.fpm.service
  12. - php.ng.fpm.pools_config
  13. extend:
  14. php_fpm_service:
  15. service:
  16. - watch:
  17. {{ file_requisites(pool_states) }}
  18. - require:
  19. {{ file_requisites(pool_states) }}