ansible-role-nginx/tasks/opensource/install-debian.yml
Jurgen Verhasselt 3a63b9acf6
Add 'nginx_manage_repo' feature flag and defaults (#420)
Co-authored-by: Jurgen Verhasselt <hello@sjugge.be>
Co-authored-by: Jurgen Verhasselt <sjugge@inuits.eu>
2021-06-14 16:57:18 +02:00

17 lines
465 B
YAML

---
- name: (Debian/Ubuntu) Configure NGINX repository
apt_repository:
filename: nginx
repo: "{{ item }}"
update_cache: true
mode: 0644
loop: "{{ nginx_repository | default(nginx_default_repository_debian) }}"
when: nginx_manage_repo | bool
- name: (Debian/Ubuntu) Install NGINX
apt:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
ignore_errors: "{{ ansible_check_mode }}"
notify: (Handler) Run NGINX