All checks were successful
continuous-integration/drone/push Build is passing
12 lines
194 B
YAML
12 lines
194 B
YAML
---
|
|
- name: Deploy {{ dnf_conf_file }}
|
|
ansible.builtin.template:
|
|
src: templates/dnf_conf.j2
|
|
dest: "{{ dnf_conf_file }}"
|
|
mode: "0644"
|
|
when:
|
|
- "'dnf' in ansible_pkg_mgr"
|
|
|
|
|
|
...
|