27d94628bd
* Added variable nginx_linux_families: ['Debian', 'RedHat', 'Suse'] * Added variable nginx_bsd_systems: ['FreeBSD', 'NetBSD', 'OpenBSD', 'DragonFlyBSD', 'HardenedBSD'] * Handler started only in "not ansible_check_mode" to avoid --check failure when service hes not been installed yet * Installation of Linux moved to install-oss-linux.yml * Installation of BSD moved to install-oss-bsd.yml * File setup-freebsd.yml deleted
41 lines
811 B
YAML
41 lines
811 B
YAML
---
|
|
- name: "(Handler: All OSs) Run NGINX"
|
|
block:
|
|
|
|
- name: "(Handler: All OSs) Start NGINX"
|
|
service:
|
|
name: nginx
|
|
state: started
|
|
enabled: yes
|
|
|
|
- name: "(Handler: All OSs) Reload NGINX"
|
|
service:
|
|
name: nginx
|
|
state: reloaded
|
|
|
|
when:
|
|
- nginx_start | bool
|
|
- not ansible_check_mode
|
|
|
|
- name: "(Handler: All OSs) Start NGINX Amplify Agent"
|
|
service:
|
|
name: amplify-agent
|
|
state: started
|
|
|
|
- name: "(Handler: All OSs) Start NGINX Controller Agent"
|
|
service:
|
|
name: controller-agent
|
|
state: started
|
|
|
|
- name: "(Handler: Debian/Ubuntu/CentOS/RedHat) Start NGINX Unit"
|
|
service:
|
|
name: unit
|
|
state: started
|
|
enabled: yes
|
|
|
|
- name: "(Handler: FreeBSD) Start NGINX Unit"
|
|
service:
|
|
name: unitd
|
|
state: started
|
|
enabled: yes
|