31beec2e7b
* 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
9 lines
250 B
YAML
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"
|