41aeda300d
And remove outdated Debian Jessie Molecule tests
24 lines
574 B
YAML
24 lines
574 B
YAML
---
|
|
- import_tasks: setup-license.yml
|
|
|
|
- import_tasks: setup-debian.yml
|
|
when: ansible_os_family == "Debian"
|
|
|
|
- import_tasks: setup-redhat.yml
|
|
when: ansible_os_family == "RedHat"
|
|
|
|
- import_tasks: setup-suse.yml
|
|
when: ansible_os_family == "Suse"
|
|
|
|
- import_tasks: setup-freebsd.yml
|
|
when: ansible_os_family == "FreeBSD"
|
|
|
|
- import_tasks: setup-alpine.yml
|
|
when: ansible_os_family == "Alpine"
|
|
|
|
- name: "(Install: All OSs) Install NGINX Plus"
|
|
package:
|
|
name: "nginx-plus{{ nginx_version | default('') }}"
|
|
state: present
|
|
notify: "(Handler: All OSs) Start NGINX"
|