ansible-role-nginx/tasks/opensource/install-suse.yml
2020-10-28 20:12:57 +01:00

15 lines
378 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
ignore_errors: "{{ ansible_check_mode }}"
notify: (Handler) Run NGINX