ansible-xen-vm-creator/tasks/install-genconfdrv.yml

16 lines
374 B
YAML
Raw Normal View History

2019-03-27 01:08:27 +01:00
---
- name: Install prerequisites
apt:
name:
- genisoimage
- qemu-utils
- python3-pip
- git
- name: Install genconfdrv
pip:
name: git+https://git.someserver.de/seba/genconfdrv/
executable: pip3
state: "{% if xen_vm_creator_update_genconfdrv|default %}latest{% else %}present{% endif %}"
2019-03-27 01:08:27 +01:00
when: xen_vm_creator_install_genconfdrv