blob: 0ae125a28782fc256f9fc82ed7a5f7133b196024 (
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-install.yml
|