Disable superfluous cache update on system upgrade on fedora

This commit is contained in:
2020-03-08 22:31:00 +01:00
parent b764652302
commit 741aa98576

View File

@@ -51,11 +51,13 @@
dnf:
name: '*'
state: latest
update_cache: false
become: true
- name: Remove unused packages
dnf:
autoremove: true
update_cache: false
become: true
when: distro == 'fedora'
tags: [update_system]