--- - name: add aurto repo (1/3) ansible.builtin.lineinfile: path: /etc/pacman.conf line: "[aurto]" - name: add aurto repo (2/3) ansible.builtin.lineinfile: path: /etc/pacman.conf line: "SigLevel = Optional TrustAll" - name: add aurto repo (3/3) ansible.builtin.lineinfile: path: /etc/pacman.conf line: "Server = https://aur.niyawe.de/" - name: update pacman cache pacman: update_cache: yes