ansible-role-nginx/tasks/unit/install-unit.yml

24 lines
749 B
YAML
Raw Normal View History

2018-04-07 01:32:48 +02:00
---
- include_tasks: "{{ role_path }}/tasks/unit/setup-{{ ansible_os_family | lower }}.yml"
when:
- ansible_os_family == "Debian"
or ansible_os_family == "RedHat"
or ansible_os_family == "FreeBSD"
2018-07-18 23:59:14 +02:00
- name: "(Install: Debian/Ubuntu/CentOS/RedHat) Install NGINX Unit"
2018-04-07 01:32:48 +02:00
package:
name: unit
state: present
2018-07-18 23:59:14 +02:00
when: ansible_os_family != "FreeBSD"
notify: "(Handler: Debian/Ubuntu/CentOS/RedHat) Start NGINX Unit"
- name: "(Install: FreeBSD) Install NGINX Unit"
portinstall:
name: unit
state: present
when: ansible_os_family == "FreeBSD"
notify: "(Handler: FreeBSD) Start NGINX Unit"
2018-04-07 01:32:48 +02:00
- include_tasks: "{{ role_path }}/tasks/unit/install-modules.yml"
when: nginx_unit_modules is defined and nginx_unit_modules