From fb0dbf28a0e7979050858256d2040d734b282afe Mon Sep 17 00:00:00 2001 From: Niklas Yann Wettengel Date: Sat, 22 Jan 2022 19:59:11 +0100 Subject: new net with nat64 --- roles/configure_aurto_repo/tasks/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 roles/configure_aurto_repo/tasks/main.yml (limited to 'roles/configure_aurto_repo/tasks/main.yml') diff --git a/roles/configure_aurto_repo/tasks/main.yml b/roles/configure_aurto_repo/tasks/main.yml new file mode 100644 index 0000000..e8ab37e --- /dev/null +++ b/roles/configure_aurto_repo/tasks/main.yml @@ -0,0 +1,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 -- cgit v1.2.3-54-g00ecf