10 lines
165 B
YAML
10 lines
165 B
YAML
---
|
|
- name: Install dnf config
|
|
become: true
|
|
ansible.builtin.copy:
|
|
src: dnf.conf
|
|
dest: /etc/dnf/dnf.conf
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|