Chris Hammer 277b96c064
All checks were successful
continuous-integration/drone/push Build is passing
Exception for dnf based hosts
2024-03-03 19:54:21 -05:00

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"
...