File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MIT
2+ ---
3+ - name : Bootc end-to-end test
4+ hosts : all
5+ tags :
6+ - tests::bootc-e2e
7+ gather_facts : false # test that role works in this case
8+ tasks :
9+ - name : Bootc image build preparation
10+ when : ansible_connection == "buildah"
11+ block :
12+ - name : Run the role
13+ include_role :
14+ name : linux-system-roles.sudo
15+ vars :
16+ sudo_check_if_configured : false
17+
18+ - name : Create QEMU deployment
19+ delegate_to : localhost
20+ command : " {{ lsr_scriptdir }}/bootc-buildah-qcow.sh {{ ansible_host }}"
21+ changed_when : true
22+
23+ - name : Validation of deployed image
24+ when : ansible_connection != "buildah"
25+ block :
26+ - name : Check header for ansible_managed, fingerprint
27+ include_tasks : tasks/check_present_header.yml
28+ vars :
29+ __file : /etc/sudoers
30+ __fingerprint : system_role:sudo
You can’t perform that action at this time.
0 commit comments