blob: 901149732bf8c7faeed6f3d7b17dd5dedfcfaec2 (
plain) (
tree)
|
|
# vmm_deploy ~~ tasks/main.yml
---
- name: Download all iso files
include: download_iso.yml iso={{ item }}
with_items: "{{ vmm.iso }}"
- name: Generate disks for all vms
include: generate_disk.yml guest={{ item }}
with_items: "{{ vms }}"
- include: generate_vmconf.yml
|