Enable libvirtd after installation, install nfs-utils
This commit is contained in:
parent
e79d25438f
commit
9d418407bf
3 changed files with 8 additions and 9 deletions
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
- name: Enable libvirtd service
|
||||
ansible.builtin.systemd:
|
||||
name: libvirtd
|
||||
enabled: true
|
||||
state: started
|
||||
scope: system
|
|
@ -36,7 +36,6 @@
|
|||
backrefs: true
|
||||
backup: true
|
||||
when: "'libvirt libvirt_guest' not in nsswitch_content"
|
||||
notify: Enable libvirtd service
|
||||
|
||||
- name: Create session pool dir
|
||||
ansible.builtin.file:
|
||||
|
@ -44,7 +43,6 @@
|
|||
state: directory
|
||||
mode: 0755
|
||||
|
||||
|
||||
- name: Define session pool
|
||||
community.libvirt.virt_pool:
|
||||
command: define
|
||||
|
@ -63,3 +61,10 @@
|
|||
autostart: true
|
||||
name: "{{ pool_name }}"
|
||||
uri: "qemu:///session"
|
||||
|
||||
- name: Start and enable libvirtd service
|
||||
become: true
|
||||
ansible.builtin.systemd:
|
||||
name: libvirtd
|
||||
enabled: true
|
||||
state: started
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
community.general.pacman:
|
||||
name:
|
||||
- vagrant
|
||||
- nfs-utils
|
||||
when: ansible_facts['distribution'] == 'Archlinux'
|
||||
|
||||
- name: Install packages (Debian)
|
||||
|
|
Loading…
Add table
Reference in a new issue