anaconda/tests/roles/prepare-test-runner/tasks/main.yml
Radek Vykydal 1471316eac Import Anaconda functional tests from RHEL 8
Related: rhbz#1961087
2021-06-28 16:27:19 +02:00

19 lines
382 B
YAML

---
- name: Add repositories
template:
src: repo.j2
dest: "/etc/yum.repos.d/{{ test_runner_repos[item]['name']}}.repo"
with_items: "{{ test_runner_repos }}"
- name: Create empty artifacts directory on local host
become: no
local_action:
module: file
path: "{{ artifacts }}"
state: "{{ item }}"
mode: 0755
with_items:
- absent
- directory