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

14 lines
334 B
YAML
Raw Normal View History

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 }}"
repo: "{{ repository }}"
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-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX