You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
444 B
YAML
20 lines
444 B
YAML
---
|
|
- 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
|