3a8e36e636
* Change yum repository from nginx to unit * Remove apt task causing ansible to be non-idempotent
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
|