blob: ef9e85b9e022d918b0eaa69ceec3ef7ad0a9b8a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
- name: install iptables-nft
shell: yes | pacman --noprogressbar --needed --sync iptables-nft
when: ansible_distribution == "Archlinux"
- name: install libvirt
package:
name:
- cdrtools
- dnsmasq
- ebtables
- libvirt
state: present
- name: append current user to virt groups
user:
name: "{{ workstation_user }}"
groups: "{{ item }}"
append: true
loop:
- kvm
- libvirt
|