2018-01-10 23:40:01 +01:00
|
|
|
---
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Install: CentOS/RedHat/Amazon Linux/Oracle Linux) Gather Distribution Version"
|
2018-01-10 23:40:01 +01:00
|
|
|
set_fact:
|
|
|
|
version: "6"
|
|
|
|
when: ansible_distribution_major_version|int == 6
|
|
|
|
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Install: CentOS/RedHat/Amazon Linux/Oracle Linux) Gather Distribution Version"
|
2018-01-10 23:40:01 +01:00
|
|
|
set_fact:
|
|
|
|
version: "7"
|
2018-01-19 19:27:47 +01:00
|
|
|
when: ansible_distribution_major_version|float >= 7.0 and ansible_distribution_major_version|float <= 7.3
|
2018-01-10 23:40:01 +01:00
|
|
|
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Install: CentOS/RedHat/Amazon Linux/Oracle Linux) Gather Distribution Version"
|
2018-01-10 23:40:01 +01:00
|
|
|
set_fact:
|
|
|
|
version: "7.4"
|
2018-01-19 19:27:47 +01:00
|
|
|
when: ansible_distribution_major_version|float == 7.4
|
2018-01-10 23:40:01 +01:00
|
|
|
|
2018-01-26 20:00:26 +01:00
|
|
|
- name: "(Install: CentOS/RedHat/Amazon Linux/Oracle Linux) Gather Distribution Version"
|
2018-01-10 23:40:01 +01:00
|
|
|
set_fact:
|
|
|
|
version: "amazon"
|
|
|
|
when: ansible_distribution == "Amazon"
|
|
|
|
|
2018-03-02 01:15:27 +01:00
|
|
|
- name: "(Install: CentOS/RedHat/Oracle Linux) Add NGINX Plus Repository"
|
|
|
|
yum_repository:
|
|
|
|
name: nginx-plus
|
|
|
|
baseurl: https://plus-pkgs.nginx.com/centos/{{ version }}/$basearch/
|
|
|
|
description: NGINX Plus Repository
|
|
|
|
sslclientcert: /etc/ssl/nginx/nginx-repo.crt
|
|
|
|
sslclientkey: /etc/ssl/nginx/nginx-repo.key
|
|
|
|
enabled: yes
|
|
|
|
gpgcheck: yes
|
|
|
|
when: ansible_distribution != "Amazon"
|
|
|
|
|
|
|
|
- name: "(Install: Amazon Linux) Add NGINX Plus Repository"
|
|
|
|
yum_repository:
|
|
|
|
name: nginx-plus
|
|
|
|
baseurl: https://plus-pkgs.nginx.com/amzn/$releasever/$basearch
|
|
|
|
description: NGINX Plus Repository
|
|
|
|
sslclientcert: /etc/ssl/nginx/nginx-repo.crt
|
|
|
|
sslclientkey: /etc/ssl/nginx/nginx-repo.key
|
|
|
|
enabled: yes
|
|
|
|
gpgcheck: yes
|
|
|
|
when: ansible_distribution == "Amazon"
|