blob: 7f633f1e4112c314f025867507b3e33451fa1ea4 (
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/usb-generate.yml
|