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

Test

parent 573a7c60
No related branches found
No related tags found
No related merge requests found
Pipeline #17731 passed
......@@ -66,12 +66,12 @@
- name: Set a fact to indicate the key and cert status is good
set_fact:
apache_md_certs: true
when: apache_md_private_keys | difference(apache_md_certs_present ) | length == 0
when: apache_md_private_keys | difference(apache_md_certs_present ) == []
- name: Set a fact to indicate the key and cert status is bad
set_fact:
apache_md_certs: false
when: apache_md_private_keys | difference(apache_md_certs_present ) | length == 0
when: apache_md_private_keys | difference(apache_md_certs_present ) != []
tags:
- apache
......
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