Update to 2024-09-23 23:00

This commit is contained in:
Daniel Berteaud
2024-09-23 23:00:09 +02:00
parent abb4d79e6c
commit 9c1159e3de
16 changed files with 127 additions and 76 deletions

View File

@@ -13,3 +13,12 @@
when: not nginx_openresty
tags: always
- block:
- name: Detect installed version
shell: |
nginx -v 2>&1| sed -E 's/nginx version: (nginx|openresty)\/([[:digit:]]+(\.[[:digit:]]+)*)/\2/'
register: nginx_installed_version
changed_when: false
- set_fact: nginx_installed_version={{ nginx_installed_version.stdout }}
tags: web,quickweb