We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251d9d2 commit c1a8c3aCopy full SHA for c1a8c3a
roles/os_images/tasks/prechecks.yml
@@ -8,6 +8,9 @@
8
register: result
9
10
- name: Display warning message about the container engine
11
- ansible.builtin.debug:
12
- msg: "Container runtime engine is not installed. Elements that require it will fail when building."
13
- when: result.rc != 0
+ ansible.builtin.assert:
+ that:
+ - result.rc = 0
14
+ fail_msg: >
15
+ Container runtime engine could not be found - make sure it is installed.
16
+ Elements that depend on it will likely fail when building.
0 commit comments