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.
15 lines
337 B
15 lines
337 B
- name: Build the RPMS
|
|
hosts: all
|
|
tasks:
|
|
- name: Install software
|
|
become: true
|
|
ansible.builtin.dnf:
|
|
name:
|
|
- git
|
|
- rpm-build
|
|
- rpmdevtools
|
|
state: present
|
|
- name: Clear directory /tmp/images/
|
|
ansible.builtin.file:
|
|
path: /tmp/images/
|
|
state: absent
|
|
|