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

14 lines
340 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
- 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
2020-09-17 17:00:27 +02:00
notify: "(Handler) Run NGINX"