Dot_Files/roles/arch-post-setup/tasks/reflector.yml

16 lines
342 B
YAML
Raw Normal View History

---
# Reflector ensures arch is using the best mirrors for pacman
- name: Install Reflector
become: true
community.general.pacman:
name:
- reflector
state: present
- name: Ensure Reflector Timer is Running and Enabled
become: true
ansible.builtin.systemd:
name: reflector.timer
state: started
enabled: true