summaryrefslogtreecommitdiff
path: root/dan
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-06-07 16:46:53 +0200
committerChristian Pointner <equinox@spreadspace.org>2020-06-07 16:46:53 +0200
commitfbca1591e68a1223719c177be4750c3bb5a88177 (patch)
tree99b38e820ae493200021f1a4c959d18856204b58 /dan
parentfix vm install role (cook vm_host variable) (diff)
fix vm install variable cooking once more
Diffstat (limited to 'dan')
-rw-r--r--dan/cloud-install.yml2
-rw-r--r--dan/usb-install.yml2
-rw-r--r--dan/vm-install.yml10
3 files changed, 11 insertions, 3 deletions
diff --git a/dan/cloud-install.yml b/dan/cloud-install.yml
index 167cf458..31c757a1 100644
--- a/dan/cloud-install.yml
+++ b/dan/cloud-install.yml
@@ -1,5 +1,5 @@
---
-- name: setup variables
+- name: cook variables for host
hosts: "{{ install_hostname }}"
gather_facts: no
tasks:
diff --git a/dan/usb-install.yml b/dan/usb-install.yml
index ab455ff7..04bf2594 100644
--- a/dan/usb-install.yml
+++ b/dan/usb-install.yml
@@ -1,5 +1,5 @@
---
-- name: setup variables
+- name: cook variables for host
hosts: "{{ install_hostname }}"
gather_facts: no
tasks:
diff --git a/dan/vm-install.yml b/dan/vm-install.yml
index 405e14db..4d42946f 100644
--- a/dan/vm-install.yml
+++ b/dan/vm-install.yml
@@ -1,10 +1,18 @@
---
-- name: setup variables
+- name: cook variables for guest
hosts: "{{ install_hostname }}"
gather_facts: no
tasks:
- set_fact:
install_cooked: "{{ install }}"
network_cooked: "{{ network }}"
+ vm_host_cooked: "{{ vm_host }}"
+
+- name: cook variables for host
+ hosts: "{{ hostvars[install_hostname].vm_host }}"
+ gather_facts: no
+ tasks:
+ - set_fact:
+ vm_host_cooked: "{{ vm_host }}"
- import_playbook: ../common/vm-install.yml