nginx-formula/nginx/init.sls

17 lines
406 B
Plaintext
Raw Normal View History

include:
- nginx.common
{% if pillar.get('nginx', {}).get('use_upstart', true) %}
- nginx.upstart
{% elif pillar.get('nginx', {}).get('use_sysvinit', true) %}
- nginx.sysvinit
{% endif %}
{% if pillar.get('nginx', {}).get('user_auth_enabled', true) %}
- nginx.users
{% endif %}
{% if pillar.get('nginx', {}).get('install_from_source') %}
2013-08-21 21:17:15 +02:00
- nginx.source
{% else %}
- nginx.package
2013-08-21 21:17:15 +02:00
{% endif -%}