Update to 2022-03-07 17:00

This commit is contained in:
Daniel Berteaud
2022-03-07 17:00:06 +01:00
parent 1065df387c
commit 714e44f5c5
42 changed files with 92 additions and 136 deletions

View File

@@ -4,13 +4,14 @@
stat: path=/dev/virtio-ports/org.qemu.guest_agent.0
register: qemu_ga_dev
- include: guest_{{ ansible_os_family }}.yml
- include_tasks: guest_{{ ansible_os_family }}.yml
when:
- qemu_ga_dev.stat.exists
- ansible_virtualization_type == 'kvm'
tags: always
- name: Start and enable qemu guest agent
service: name=qemu-guest-agent state=started enabled=yes
service: name=qemu-guest-agent state=started enabled=True
when:
- qemu_ga_dev.stat.exists
- ansible_virtualization_type == 'kvm'