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

21 lines
666 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
- name: (Amazon Linux/CentOS/RHEL) Configure NGINX repository
2020-09-15 21:27:06 +02:00
yum_repository:
name: nginx
baseurl: "{{ nginx_repository |
default(lookup('vars', 'nginx_default_repository_' + ((ansible_facts['distribution'] == 'Amazon') | ternary('amazon', 'redhat')))) }}"
2020-09-15 21:27:06 +02:00
description: NGINX Repository
enabled: true
gpgcheck: true
2020-09-15 21:27:06 +02:00
mode: 0644
module_hotfixes: true
when: nginx_manage_repo | bool
2020-09-15 21:27:06 +02:00
- name: (Amazon Linux/CentOS/RHEL) Install NGINX
2020-09-15 21:27:06 +02:00
yum:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
update_cache: true
ignore_errors: "{{ ansible_check_mode }}"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX