Commit 348a3612 by Feanil Patel

Put this bit of clever back because it doesn't work when you un-jinja this.

parent f1593780
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
- name: Check Configuration Sources - name: Check Configuration Sources
fail: fail:
msg: "Configuration Sources Checking (COMMON_EXTRA_CONFIGURATION_SOURCES_CHECKING) is enabled, you must define {{ item }}" msg: "Configuration Sources Checking (COMMON_EXTRA_CONFIGURATION_SOURCES_CHECKING) is enabled, you must define {{ item }}"
when: COMMON_EXTRA_CONFIGURATION_SOURCES_CHECKING and (item is not defined or item != True) when: COMMON_EXTRA_CONFIGURATION_SOURCES_CHECKING and ({{ item }} is not defined or {{ item }} != True)
with_items: "{{ COMMON_EXTRA_CONFIGURATION_SOURCES }}" with_items: "{{ COMMON_EXTRA_CONFIGURATION_SOURCES }}"
tags: tags:
- "install" - "install"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment