File tree Expand file tree Collapse file tree 4 files changed +20
-20
lines changed Expand file tree Collapse file tree 4 files changed +20
-20
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 197
197
import_playbook : " {{ hook_path if hook_path | exists else 'noop.yml' }}"
198
198
when : hook_path | exists
199
199
200
- - import_playbook : disable-repos.yml
201
-
202
- - hosts : builder
203
- become : yes
204
- gather_facts : yes
205
- tags : finalise
206
- tasks :
207
- - name : Cleanup image
208
- import_tasks : cleanup.yml
209
-
210
- - name : Shutdown Packer VM
211
- community.general.shutdown :
200
+ - import_playbook : final.yml
Original file line number Diff line number Diff line change
1
+ - hosts : dnf_repos
2
+ become : yes
3
+ tasks :
4
+ - name : Disable pulp repos
5
+ ansible.builtin.include_role :
6
+ name : dnf_repos
7
+ tasks_from : disable_repos.yml
8
+
9
+ - hosts : builder
10
+ become : yes
11
+ gather_facts : yes
12
+ tags : finalise
13
+ tasks :
14
+ - name : Cleanup image
15
+ import_tasks : cleanup.yml
16
+
17
+ - name : Shutdown Packer VM
18
+ community.general.shutdown :
Original file line number Diff line number Diff line change 36
36
import_playbook : " {{ hook_path if hook_path | exists else 'noop.yml' }}"
37
37
when : hook_path | exists
38
38
39
- - import_playbook : disable-repos .yml
39
+ - import_playbook : final .yml
40
40
41
41
...
You can’t perform that action at this time.
0 commit comments