30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
## DEPRECATED -- Use nginxinc.nginx_unit role instead (https://github.com/nginxinc/ansible-role-nginx-unit)
|
|
---
|
|
- name: Deprecation warning
|
|
debug:
|
|
msg: DEPRECATED TASKS -- Use nginxinc.nginx_unit role instead (https://github.com/nginxinc/ansible-role-nginx-unit)
|
|
|
|
- name: (DEPRECATED) Configure NGINX Unit Repository
|
|
include_tasks: "{{ role_path }}/tasks/unit/setup-{{ ansible_facts['os_family'] | lower }}.yml"
|
|
when: ansible_facts['os_family'] == "Debian"
|
|
or ansible_facts['os_family'] == "RedHat"
|
|
or ansible_facts['os_family'] == "FreeBSD"
|
|
|
|
- name: (DEPRECATED) Install NGINX Unit
|
|
package:
|
|
name: unit
|
|
state: present
|
|
when: ansible_facts['os_family'] != "FreeBSD"
|
|
notify: (DEPRECATED Handler - Debian/Ubuntu/CentOS/RedHat) Start NGINX Unit
|
|
|
|
- name: (DEPRECATED) Install NGINX Unit
|
|
portinstall:
|
|
name: unit
|
|
state: present
|
|
when: ansible_facts['os_family'] == "FreeBSD"
|
|
notify: (DEPRECATED Handler - FreeBSD) Start NGINX Unit
|
|
|
|
- name: (DEPRECATED) Install NGINX Unit modules
|
|
include_tasks: "{{ role_path }}/tasks/unit/install-modules.yml"
|
|
when: nginx_unit_modules is defined
|