2020-09-15 21:27:06 +02:00
|
|
|
---
|
2020-09-19 17:32:17 +02:00
|
|
|
- name: (SLES) Combine NGINX Plus certificate and license key
|
2020-09-15 21:27:06 +02:00
|
|
|
assemble:
|
|
|
|
src: /etc/ssl/nginx
|
|
|
|
dest: /etc/ssl/nginx/nginx-repo-bundle.crt
|
|
|
|
mode: 0444
|
|
|
|
|
2020-09-19 17:32:17 +02:00
|
|
|
- name: (SLES) Configure NGINX Plus repository
|
2020-09-15 21:27:06 +02:00
|
|
|
zypper_repository:
|
|
|
|
name: nginx-plus
|
|
|
|
repo: "{{ repository }}"
|
|
|
|
state: "{{ nginx_license_status | default ('present') }}"
|
|
|
|
|
2020-09-19 17:32:17 +02:00
|
|
|
- name: (SLES) Install NGINX Plus
|
2020-09-15 21:27:06 +02:00
|
|
|
zypper:
|
|
|
|
name: "nginx-plus{{ nginx_version | default('') }}"
|
|
|
|
state: "{{ nginx_state }}"
|
|
|
|
update_cache: yes
|
2020-09-19 17:32:17 +02:00
|
|
|
notify: (Handler) Run NGINX
|