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

17 lines
622 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
- name: (SLES) {{ (nginx_setup == 'uninstall') | ternary('Remove', 'Configure') }} NGINX repository
2020-09-15 21:27:06 +02:00
zypper_repository:
name: "nginx-{{ nginx_branch }}"
repo: "{{ nginx_repository | default(nginx_default_repository_suse) }}"
state: "{{ (nginx_state == 'uninstall') | ternary('absent', 'present') }}"
when: nginx_manage_repo | bool
2020-09-15 21:27:06 +02:00
- name: (SLES) {{ nginx_setup | capitalize }} NGINX
2020-09-15 21:27:06 +02:00
zypper:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
disable_recommends: false
update_cache: true
ignore_errors: "{{ ansible_check_mode }}"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX