ansible-role-nginx/tasks/opensource/install-oss.yml

23 lines
867 B
YAML
Raw Normal View History

2018-01-10 23:40:01 +01:00
---
2020-09-19 17:32:17 +02:00
- name: Install NGINX in Linux systems
2020-09-15 21:27:06 +02:00
block:
2020-09-19 17:32:17 +02:00
- name: Install NGINX from repository
include_tasks: "{{ role_path }}/tasks/opensource/install-{{ ansible_facts['os_family'] | lower }}.yml"
2020-09-15 21:27:06 +02:00
when: nginx_install_from == "nginx_repository"
2020-09-19 17:32:17 +02:00
- name: Install NGINX from source
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/opensource/install-source.yml"
when: nginx_install_from == "source"
2020-09-19 17:32:17 +02:00
- name: Install NGINX from package
2020-09-15 21:27:06 +02:00
package:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
when: nginx_install_from == "os_repository"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX
2020-09-15 21:27:06 +02:00
when: ansible_facts['system'] | lower is not search('bsd')
2020-09-19 17:32:17 +02:00
- name: Install NGINX in Unix systems
2020-09-15 21:27:06 +02:00
include_tasks: "{{ role_path }}/tasks/opensource/install-bsd.yml"
when: ansible_facts['system'] | lower is search('bsd')