Update package cache and packages during install #3

Merged
ejparker merged 4 commits from fix into prod 2025-03-20 21:59:31 -05:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit efd2e2a075 - Show all commits

View file

@ -6,4 +6,6 @@
- include_tasks: pacman.yml
when: ansible_facts['distribution'] == "Archlinux"
- include_tasks: packages.yml
- include_tasks: directories.yml

View file

@ -44,3 +44,8 @@
name: build_mirrorlist.timer
state: started
enabled: yes
- name: refresh package cache and upgrade packages
community.general.pacman:
upgrade: true
update_cache: true