Added optional 'service_name' pillar config, to change the name of the service from 'nginx' to whatever you want it to be.
This commit is contained in:
parent
5531662527
commit
ce0e3384eb
@ -24,6 +24,8 @@
|
|||||||
{% set without_items = nginx.get('without', []) -%}
|
{% set without_items = nginx.get('without', []) -%}
|
||||||
{% set make_flags = nginx.get('make_flags', nginx_map['make_flags']) -%}
|
{% set make_flags = nginx.get('make_flags', nginx_map['make_flags']) -%}
|
||||||
|
|
||||||
|
{% set service_name = nginx.get('service_name', 'nginx') %}
|
||||||
|
|
||||||
{% set nginx_package = source + '/nginx-' + version + '.tar.gz' -%}
|
{% set nginx_package = source + '/nginx-' + version + '.tar.gz' -%}
|
||||||
{% set nginx_source = source + "/nginx-" + version -%}
|
{% set nginx_source = source + "/nginx-" + version -%}
|
||||||
{% set nginx_modules_dir = source + "/nginx-modules" -%}
|
{% set nginx_modules_dir = source + "/nginx-modules" -%}
|
||||||
@ -215,7 +217,7 @@ nginx:
|
|||||||
file:
|
file:
|
||||||
- managed
|
- managed
|
||||||
- template: jinja
|
- template: jinja
|
||||||
- name: /etc/init.d/nginx
|
- name: /etc/init.d/{{ service_name }}
|
||||||
- source: salt://nginx/templates/nginx.init.jinja
|
- source: salt://nginx/templates/nginx.init.jinja
|
||||||
- user: root
|
- user: root
|
||||||
- group: root
|
- group: root
|
||||||
@ -227,6 +229,7 @@ nginx:
|
|||||||
- running
|
- running
|
||||||
- enable: True
|
- enable: True
|
||||||
- restart: True
|
- restart: True
|
||||||
|
- name: {{ service_name }}
|
||||||
- watch:
|
- watch:
|
||||||
- cmd: nginx
|
- cmd: nginx
|
||||||
- file: {{ conf_dir }}/nginx.conf
|
- file: {{ conf_dir }}/nginx.conf
|
||||||
|
Loading…
Reference in New Issue
Block a user