Add configuration variable for starting nginx service.

This commit is contained in:
Robert August Vincent II 2019-03-21 08:32:27 -04:00
parent a68ddd708d
commit 58b3b71077
2 changed files with 10 additions and 0 deletions

View File

@ -3,6 +3,10 @@
# Default is true.
nginx_enable: true
# Start NGINX service.
# Default is true
nginx_start: true
# Print NGINX configuration file to terminal after executing playbook.
nginx_debug_output: false

View File

@ -4,30 +4,36 @@
name: nginx
state: started
enabled: yes
when: nginx_start
- name: "(Handler: All OSs) Reload NGINX"
service:
name: nginx
state: reloaded
when: nginx_start
- name: "(Handler: All OSs) Start NGINX Amplify Agent"
service:
name: amplify-agent
state: started
when: nginx_start
- name: "(Handler: All OSs) Start NGINX Controller Agent"
service:
name: controller-agent
state: started
when: nginx_start
- name: "(Handler: Debian/Ubuntu/CentOS/RedHat) Start NGINX Unit"
service:
name: unit
state: started
enabled: yes
when: nginx_start
- name: "(Handler: FreeBSD) Start NGINX Unit"
service:
name: unitd
state: started
enabled: yes
when: nginx_start