bf2916fc55
* Explicitly define `mode` in relevant tasks. * Explicitly define the `nginx` `apt_repository` filename in Debian based distros. * Building OpenSSL from source should now work properly in CentOS 8.
31 lines
1.1 KiB
YAML
31 lines
1.1 KiB
YAML
---
|
|
- name: "(Setup: CentOS/RedHat/Oracle Linux) Setup NGINX Plus Repository"
|
|
yum_repository:
|
|
name: nginx-plus
|
|
baseurl: >-
|
|
https://plus-pkgs.nginx.com/centos/{{ (ansible_distribution_version | float >= 7.4 and ansible_distribution_version | float < 8.0)
|
|
| ternary(ansible_distribution_major_version | int, 7.4) }}/$basearch/
|
|
description: NGINX Plus Repository
|
|
sslclientcert: /etc/ssl/nginx/nginx-repo.crt
|
|
sslclientkey: /etc/ssl/nginx/nginx-repo.key
|
|
enabled: yes
|
|
gpgcheck: yes
|
|
state: "{{ nginx_license_status | default ('present') }}"
|
|
mode: 0644
|
|
when: ansible_distribution != "Amazon"
|
|
|
|
- name: "(Setup: Amazon Linux) Setup NGINX Plus Repository"
|
|
yum_repository:
|
|
name: nginx-plus
|
|
baseurl: >-
|
|
https://plus-pkgs.nginx.com/amzn{{ (ansible_distribution_version == "2")
|
|
| ternary('2', '') }}/$releasever/$basearch
|
|
description: NGINX Plus Repository
|
|
sslclientcert: /etc/ssl/nginx/nginx-repo.crt
|
|
sslclientkey: /etc/ssl/nginx/nginx-repo.key
|
|
enabled: yes
|
|
gpgcheck: yes
|
|
state: "{{ nginx_license_status | default ('present') }}"
|
|
mode: 0644
|
|
when: ansible_distribution == "Amazon"
|