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

debug test

parent 575e6c78
No related branches found
No related tags found
No related merge requests found
Pipeline #29340 failed
......@@ -11,6 +11,22 @@
- name: Check that mistakes haven't been made in the variables and arrays
block:
- name: Find the mods available
ansible.builtin.find:
paths: /etc/apache2/mods-available
file_type: file
use_regex: true
patterns: '^.*[.]load$'
recurse: false
register: apache_mods_available_load
- name: Debug the mods available
ansible.builtin.debug:
var: apache_mods_available_load
- name: Debug fail
ansible.builtin.fail:
- name: Check that at least one module is in apache_mods_enabled and that either mpm_event or mpm_prefork is enabled
ansible.builtin.assert:
that:
......
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