Saltstack Official Nginx 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.
|
- # nginx.ng.install
- #
- # Manages installation of nginx.
-
- {% from 'nginx/ng/map.jinja' import nginx, sls_block with context %}
-
- nginx_install:
- {% if nginx.from_source %}
- ## add source compilation here
- {% else %}
- pkg.installed:
- {{ sls_block(nginx.package.opts) }}
- - name: {{ nginx.lookup.package }}
- {% endif %}
|