Merge branch 'qemu-guest-agent' into 'newinfra'

[qemu-guest-agent] Install qemu-guest-agent on VMs

See merge request nounous/ansible!26
certbot_on_virtu
_benjamin 2020-08-07 16:54:53 +02:00
commit 3243737413
2 changed files with 14 additions and 0 deletions

View File

@ -21,6 +21,10 @@
# - crans-scripts
- root-config
- hosts: crans_vm
roles:
- qemu-guest-agent
- hosts: slapd
vars:
slapd: '{{ glob_slapd | combine(loc_slapd | default({})) }}'

View File

@ -0,0 +1,10 @@
---
- name: Install qemu guest agent
apt:
update_cache: true
install_recommends: false
name:
- qemu-guest-agent
register: apt_result
retries: 3
until: apt_result is succeeded