purge option not allowed with autoclean

This commit is contained in:
c0de 2024-01-04 14:14:46 -06:00
parent 21d3dbbf28
commit 1a58fcbb75
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@
ansible.builtin.apt:
autoclean: true
autoremove: true
- name: purge any left over files
ansible.builtin.apt:
purge: true
...