14 lines
239 B
YAML
14 lines
239 B
YAML
|
---
|
||
|
- name: Install pkgs
|
||
|
community.general.pacman:
|
||
|
name: "{{ item }}"
|
||
|
state: present
|
||
|
with_items: "{{ pacman_virtualisation }}"
|
||
|
|
||
|
- name: enable service libvirtd
|
||
|
systemd:
|
||
|
name: libvirtd
|
||
|
enabled: yes
|
||
|
state: started
|
||
|
|