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

16 lines
431 B
YAML
Raw Normal View History

2020-09-15 21:27:06 +02:00
---
2020-09-19 17:32:17 +02:00
- name: (Debian/Ubuntu) Configure NGINX repository
2020-09-15 21:27:06 +02:00
apt_repository:
filename: nginx
repo: "{{ item }}"
update_cache: yes
mode: 0644
loop: "{{ nginx_repository | default(nginx_default_repository_debian) }}"
2020-09-15 21:27:06 +02:00
2020-09-19 17:32:17 +02:00
- name: (Debian/Ubuntu) Install NGINX
2020-09-15 21:27:06 +02:00
apt:
name: "nginx{{ nginx_version | default('') }}"
state: "{{ nginx_state }}"
ignore_errors: "{{ ansible_check_mode }}"
2020-09-19 17:32:17 +02:00
notify: (Handler) Run NGINX