Enable libvirtd after installation, install nfs-utils

This commit is contained in:
flyingscorpio@arch-desktop 2023-08-10 19:35:26 +02:00
parent e79d25438f
commit 9d418407bf
3 changed files with 8 additions and 9 deletions

View file

@ -1,7 +0,0 @@
---
- name: Enable libvirtd service
ansible.builtin.systemd:
name: libvirtd
enabled: true
state: started
scope: system

View file

@ -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

View file

@ -4,6 +4,7 @@
community.general.pacman:
name:
- vagrant
- nfs-utils
when: ansible_facts['distribution'] == 'Archlinux'
- name: Install packages (Debian)