Guillaume Coré
2020-01-17 48eeec80e2c30fbdf91214aa9cbaa7b22f36607b
commit | author | age
a3baaa 1 ---
TK 2 - name: Step 003 Pre Software
3   hosts:        localhost
4   connection:   local
5   become:       false
6   tags:
7     - step003
8     - pre_software
9   tasks:
10
11     - name: Entering the test-empty-config pre_software.yml
12       debug:
13         msg:
14           - Entering the test-empty-config pre_software.yml
15
89c4ff 16     - when: fail_pre_software | default(false)
T 17       name: Fail the test-empty-config pre_software.yml if requested
18       fail:
19         msg: pre_software.yml failed as requested
20
a3baaa 21     - name: Exiting the test-empty-config pre_software.yml
TK 22       debug:
23         msg:
24           - Exiting the test-empty-config pre_software.yml
48eeec 25     - debug:
GC 26         msg: Pre-Software checks completed successfully
a3baaa 27 ...