6 lines
194 B
YAML
6 lines
194 B
YAML
- name: clean up Fedora
|
|
become: true
|
|
ansible.builtin.command: dnf clean all # noqa command-instead-of-module
|
|
when: ansible_facts.pkg_mgr not in ['atomic_container']
|
|
changed_when: false
|