2020-09-15 21:27:06 +02:00
|
|
|
---
|
2020-09-19 17:32:17 +02:00
|
|
|
- name: (SLES) Configure NGINX repository
|
2020-09-15 21:27:06 +02:00
|
|
|
zypper_repository:
|
|
|
|
name: "nginx-{{ nginx_branch }}"
|
2020-11-17 16:40:53 +01:00
|
|
|
repo: "{{ nginx_repository | default(nginx_default_repository_suse) }}"
|
2020-09-15 21:27:06 +02:00
|
|
|
|
2020-09-19 17:32:17 +02:00
|
|
|
- name: (SLES) Install NGINX
|
2020-09-15 21:27:06 +02:00
|
|
|
zypper:
|
|
|
|
name: "nginx{{ nginx_version | default('') }}"
|
|
|
|
state: "{{ nginx_state }}"
|
|
|
|
disable_recommends: no
|
|
|
|
update_cache: yes
|
2020-10-28 20:12:57 +01:00
|
|
|
ignore_errors: "{{ ansible_check_mode }}"
|
2020-09-19 17:32:17 +02:00
|
|
|
notify: (Handler) Run NGINX
|