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
|
backrefs: true
|
||||||
backup: true
|
backup: true
|
||||||
when: "'libvirt libvirt_guest' not in nsswitch_content"
|
when: "'libvirt libvirt_guest' not in nsswitch_content"
|
||||||
notify: Enable libvirtd service
|
|
||||||
|
|
||||||
- name: Create session pool dir
|
- name: Create session pool dir
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
|
@ -44,7 +43,6 @@
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|
||||||
|
|
||||||
- name: Define session pool
|
- name: Define session pool
|
||||||
community.libvirt.virt_pool:
|
community.libvirt.virt_pool:
|
||||||
command: define
|
command: define
|
||||||
|
@ -63,3 +61,10 @@
|
||||||
autostart: true
|
autostart: true
|
||||||
name: "{{ pool_name }}"
|
name: "{{ pool_name }}"
|
||||||
uri: "qemu:///session"
|
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:
|
community.general.pacman:
|
||||||
name:
|
name:
|
||||||
- vagrant
|
- vagrant
|
||||||
|
- nfs-utils
|
||||||
when: ansible_facts['distribution'] == 'Archlinux'
|
when: ansible_facts['distribution'] == 'Archlinux'
|
||||||
|
|
||||||
- name: Install packages (Debian)
|
- name: Install packages (Debian)
|
||||||
|
|
Loading…
Add table
Reference in a new issue