Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion roles/edpm_build_images/tasks/bootc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
- name: Ensure bootc output directories exist
become: "{{ cifmw_edpm_build_images_via_rpm }}"
ansible.builtin.file:
path: "{{ item }}"
state: directory
Expand All @@ -16,7 +17,7 @@
register: cifmw_edpm_build_images_bootc_repo_files

- name: Copy repo files for bootc build
become: true
become: "{{ cifmw_edpm_build_images_via_rpm }}"
ansible.builtin.copy:
src: "{{ item.path }}"
dest: "{{ cifmw_edpm_build_images_bootc_repo_path }}/output/yum.repos.d/{{ item.path | basename }}"
Expand Down Expand Up @@ -88,6 +89,7 @@
mode: "0644"

- name: Copy bootc qcow2 packaging helper files
become: "{{ cifmw_edpm_build_images_via_rpm }}"
ansible.builtin.copy:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
Expand Down
Loading