blob: 04bf259411f42d8f1049e4aff10beef3a5ae0792 (
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/usb-install.yml
|