Update to 2023-09-20 10:00

This commit is contained in:
Daniel Berteaud
2023-09-20 10:00:24 +02:00
parent fb2734f2bc
commit 5956dad4fd
17 changed files with 44 additions and 23 deletions

View File

@@ -1,4 +1,14 @@
---
# Load distribution specific variables
- include_vars: "{{ item }}"
with_first_found:
- "{{ role_path }}/vars/{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
- "{{ role_path }}/vars/{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml"
- "{{ role_path }}/vars/{{ ansible_distribution }}.yml"
- "{{ role_path }}/vars/{{ ansible_os_family }}.yml"
tags: web
- name: List http ports
set_fact: nginx_ports={{ nginx_ports + (nginx_vhosts | selectattr('port','defined') | map(attribute='port') | list) | flatten | unique }}
tags: firewall,web,quickweb

View File

@@ -2,9 +2,8 @@
- name: Install python-passlib
package:
name:
- python-passlib
tags: nginx
name: "{{ nginx_tools_packages }}"
tags: web
- include_tasks: install_openresty.yml
when: nginx_openresty

View File

@@ -1,8 +1,8 @@
---
- include_tasks: install.yml
- include_tasks: facts.yml
tags: always
- include_tasks: facts.yml
- include_tasks: install.yml
tags: always
- include_tasks: ssl.yml