8 lines
356 B
YAML
8 lines
356 B
YAML
|
---
|
||
|
- name: "(Install: Debian/Ubuntu) Add NGINX Unit Repository"
|
||
|
apt_repository:
|
||
|
repo: "{{ item }}"
|
||
|
with_items:
|
||
|
- deb https://packages.nginx.org/unit/{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} unit
|
||
|
- deb-src https://packages.nginx.org/unit/{{ ansible_distribution|lower }}/ {{ ansible_distribution_release }} unit
|