blob: 72db81d9ffef243b7e90ad5ab0e2681675378733 (
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/cloud-install.yml
|