ansible-role-nginx/tasks/opensource/install-suse.yml
Alessandro Fael Garcia 903693e67f
Refactor handlers (#321)
2020-09-17 17:00:27 +02:00

14 lines
340 B
YAML

---
- name: "(SLES) Configure NGINX repository"
zypper_repository:
name: "nginx-{{ nginx_branch }}"
repo: "{{ repository }}"
- name: "(SLES) Install NGINX"
zypper:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
disable_recommends: no
update_cache: yes
notify: "(Handler) Run NGINX"