blob: 5defe6d3d6ca27741dadee8c3c8b4b2d9711faaf (
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: "{{ install | default({}) }}"
network: "{{ network | default({}) }}"
- import_playbook: ../common/iso-install.yml
|