35 lines
809 B
YAML
35 lines
809 B
YAML
---
|
|
- fail:
|
|
when: ansible_distribution != 'Archlinux'
|
|
|
|
- name: Install packages (Archlinux)
|
|
become: true
|
|
pacman:
|
|
name:
|
|
- libvirt
|
|
- iptables-nft
|
|
- dnsmasq
|
|
- dmidecode
|
|
- virt-install
|
|
- virt-viewer
|
|
- qemu-headless
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
- name: Add user to libvirt group
|
|
user:
|
|
name: "{{ ansible_facts['env']['USER'] }}"
|
|
append: yes
|
|
groups: libvirt
|
|
|
|
- name: Put 'libvirt libvirt_guest' in /etc/nsswitch.conf
|
|
become: true
|
|
vars:
|
|
nsswitch_content: "{{ lookup('file', '/etc/nsswitch.conf') }}"
|
|
lineinfile:
|
|
path: /etc/nsswitch.conf
|
|
regexp: '^hosts: (.+)'
|
|
line: 'hosts: libvirt libvirt_guest \1'
|
|
state: present
|
|
backrefs: true
|
|
backup: true
|
|
when: "'libvirt libvirt_guest' not in nsswitch_content"
|