--- # 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 - name: Install Reflector Config become: true ansible.builtin.copy: src: reflector.conf dest: /etc/xdg/reflector/reflector.conf mode: '0644' owner: root group: root