blob: 584b8914438b24b183bb29bc4e948e7f9159f918 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
- name: cook variables for host
hosts: "{{ install_hostnames }}"
gather_facts: no
tasks:
- set_fact:
install: "{{ install | default({}) }}"
network: "{{ network | default({}) }}"
- import_playbook: ../common/iso-generate.yml
|