Enable multilib repository
This commit is contained in:
parent
fde6533c4e
commit
7a291faf28
@ -2,6 +2,18 @@
|
|||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
become: yes
|
become: yes
|
||||||
tasks:
|
tasks:
|
||||||
|
- name: Enable multilib repository
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/pacman.conf
|
||||||
|
search_string: "#[multilib]"
|
||||||
|
line: "[multilib]"
|
||||||
|
|
||||||
|
- name: Enable multilib repository (2)
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/pacman.conf
|
||||||
|
search_string: "#Include = /etc/pacman.d/mirrorlist"
|
||||||
|
line: Include = /etc/pacman.d/mirrorlist
|
||||||
|
|
||||||
- name: Install official packages
|
- name: Install official packages
|
||||||
community.general.pacman:
|
community.general.pacman:
|
||||||
state: latest
|
state: latest
|
||||||
|
Loading…
Reference in New Issue
Block a user