Files
vms/ansible/roles/cleanup/tasks/Fedora.yml
T

6 lines
194 B
YAML
Raw Normal View History

2022-05-02 22:03:37 -05:00
- name: clean up Fedora
become: true
2022-05-05 08:17:48 -05:00
ansible.builtin.command: dnf clean all # noqa command-instead-of-module
2022-05-02 22:03:37 -05:00
when: ansible_facts.pkg_mgr not in ['atomic_container']
2022-05-05 08:17:48 -05:00
changed_when: false