Saltstack Official Nginx Formula
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 lines
406B

  1. include:
  2. - nginx.common
  3. {% if pillar.get('nginx', {}).get('use_upstart', true) %}
  4. - nginx.upstart
  5. {% elif pillar.get('nginx', {}).get('use_sysvinit', true) %}
  6. - nginx.sysvinit
  7. {% endif %}
  8. {% if pillar.get('nginx', {}).get('user_auth_enabled', true) %}
  9. - nginx.users
  10. {% endif %}
  11. {% if pillar.get('nginx', {}).get('install_from_source') %}
  12. - nginx.source
  13. {% else %}
  14. - nginx.package
  15. {% endif -%}