2018-01-10 23:40:01 +01:00
|
|
|
---
|
2019-11-22 15:52:34 +01:00
|
|
|
- name: "(Install: Debian/Ubuntu) Set Default APT NGINX Repository"
|
|
|
|
set_fact:
|
|
|
|
default_repository:
|
|
|
|
- >-
|
|
|
|
deb https://nginx.org/packages/{{ (nginx_branch == 'mainline')
|
|
|
|
| ternary('mainline/', '') }}{{ ansible_distribution | lower }}/ {{ ansible_distribution_release }} nginx
|
|
|
|
- >-
|
|
|
|
deb-src https://nginx.org/packages/{{ (nginx_branch == 'mainline')
|
|
|
|
| ternary('mainline/', '') }}{{ ansible_distribution | lower }}/ {{ ansible_distribution_release }} nginx
|
|
|
|
|
|
|
|
- name: "(Install: Debian/Ubuntu) Set APT NGINX Repository"
|
|
|
|
set_fact:
|
|
|
|
repository: "{{ nginx_repository | default(default_repository) }}"
|
|
|
|
|
2018-05-12 00:12:06 +02:00
|
|
|
- name: "(Install: Debian/Ubuntu) Add NGINX Repository"
|
2018-01-10 23:40:01 +01:00
|
|
|
apt_repository:
|
|
|
|
repo: "{{ item }}"
|
|
|
|
with_items:
|
2019-11-22 15:52:34 +01:00
|
|
|
- "{{ repository }}"
|