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

23 lines
992 B
YAML
Raw Normal View History

2018-01-10 23:40:01 +01:00
---
- name: "{{ nginx_setup | capitalize }} NGINX in Linux systems"
2020-09-15 21:27:06 +02:00
block:
- name: "{{ nginx_setup | capitalize }} 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"
- name: "{{ nginx_setup | capitalize }} 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"
- name: "{{ nginx_setup | capitalize }} 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')
- name: "{{ nginx_setup | capitalize }} 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')