Skip to content
Snippets Groups Projects
Commit c6ac6a5d authored by Chris Croome's avatar Chris Croome
Browse files

Add TLS version variable

parent 6a37daaa
No related branches found
No related tags found
1 merge request!2MPM switching and TLS 1.3
Pipeline #9778 failed
......@@ -16,6 +16,7 @@
- name: Debug Apache version check
debug:
msg: "{{ apache_version_check.stdout_lines[0] }}"
verbosity: 2
- name: Set a fact for the Apache version
set_fact:
......@@ -24,6 +25,22 @@
- name: Debug Apache version
debug:
var: apache_version
verbosity: 1
- name: TLS versions
block:
- name: Set facts for TLS versions
set_fact:
apache_tls1_3: True
when: apache_version is version('2.4.41', '>=')
- name: Debug TLS 1.3 variable
debug:
var: apache_tls1_3
verbosity: 1
when: apache_version is version('2.4.41', '>=')
- name: Check if phpquery is installed
shell: which phpquery || echo absent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment