summaryrefslogtreecommitdiff
path: root/roles/configure_aurto_repo/tasks/main.yml
blob: e8ab37e9e26f05654f10590cfa01a9b23d25d942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
- 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