ansible-role-nginx/tasks/prerequisites/install-prerequisites.yml
Vladimir Botka 31beec2e7b NGINX Plus separate installation of Linux and FreeBSD (#193)
* Added variable nginx_plus_linux_families: ['Alpine', 'Debian', 'RedHat', 'Suse']
* Added variable nginx_plus_bsd_systems: ['FreeBSD']
* Added variable nginx_freebsd_extra_packages: ['security/ca_root_nss']
* Installation of Linux moved to install-plus-linux.yml
* Installation of FreeBSD moved to install-plus-bsd.yml
* Installation of nginx_freebsd_extra_packages moved to tasks/prerequisites/setup-freebsd.yml
* Installation of NGINX Plus tested with FreeBSD 12.0; Lint passed
2019-11-26 14:15:55 +01:00

9 lines
250 B
YAML

---
- name: "(Setup: Debian/Ubuntu) Install Prerequisites"
import_tasks: setup-debian.yml
when: ansible_os_family == "Debian"
- name: "(Setup: FreeBSD) Install Prerequisites"
import_tasks: setup-freebsd.yml
when: ansible_system == "FreeBSD"