You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
307 B
14 lines
307 B
11 months ago
|
---
|
||
|
- name: Install dependencies
|
||
|
ansible.builtin.dnf:
|
||
|
name:
|
||
|
- git
|
||
|
- python3-cryptography
|
||
|
state: present
|
||
|
|
||
|
- name: Clone koji-tools git repository
|
||
|
ansible.builtin.git:
|
||
|
repo: 'https://pagure.io/koji-tools.git'
|
||
|
dest: /usr/local/koji-tools
|
||
|
version: "{{ koji_tools_git_ref }}"
|