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