summaryrefslogtreecommitdiff
path: root/spreadspace
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-01-02 02:09:52 +0100
committerChristian Pointner <equinox@spreadspace.org>2022-01-02 02:09:52 +0100
commitc0e698b44c034c6f0d4765d14033ddb5f3e317b6 (patch)
tree6e6be7622f3f0636a0ba0d495418ad9810b21608 /spreadspace
parentremove unneded playbooks (diff)
variable cookin: deal with unset variables
Diffstat (limited to 'spreadspace')
-rw-r--r--spreadspace/cloud-install.yml4
-rw-r--r--spreadspace/iso-generate.yml4
-rw-r--r--spreadspace/iso-install.yml4
-rw-r--r--spreadspace/usb-generate.yml4
-rw-r--r--spreadspace/usb-install.yml4
-rw-r--r--spreadspace/vm-install.yml6
6 files changed, 13 insertions, 13 deletions
diff --git a/spreadspace/cloud-install.yml b/spreadspace/cloud-install.yml
index 1a7b26c0..72db81d9 100644
--- a/spreadspace/cloud-install.yml
+++ b/spreadspace/cloud-install.yml
@@ -4,7 +4,7 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
- import_playbook: ../common/cloud-install.yml
diff --git a/spreadspace/iso-generate.yml b/spreadspace/iso-generate.yml
index 59a077ae..584b8914 100644
--- a/spreadspace/iso-generate.yml
+++ b/spreadspace/iso-generate.yml
@@ -4,7 +4,7 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
- import_playbook: ../common/iso-generate.yml
diff --git a/spreadspace/iso-install.yml b/spreadspace/iso-install.yml
index 91dfca9e..5defe6d3 100644
--- a/spreadspace/iso-install.yml
+++ b/spreadspace/iso-install.yml
@@ -4,7 +4,7 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
- import_playbook: ../common/iso-install.yml
diff --git a/spreadspace/usb-generate.yml b/spreadspace/usb-generate.yml
index 12582abe..7f633f1e 100644
--- a/spreadspace/usb-generate.yml
+++ b/spreadspace/usb-generate.yml
@@ -4,7 +4,7 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
- import_playbook: ../common/usb-generate.yml
diff --git a/spreadspace/usb-install.yml b/spreadspace/usb-install.yml
index ae948707..0f62bc85 100644
--- a/spreadspace/usb-install.yml
+++ b/spreadspace/usb-install.yml
@@ -4,7 +4,7 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
- import_playbook: ../common/usb-install.yml
diff --git a/spreadspace/vm-install.yml b/spreadspace/vm-install.yml
index 7db00cba..da6a29a5 100644
--- a/spreadspace/vm-install.yml
+++ b/spreadspace/vm-install.yml
@@ -4,8 +4,8 @@
gather_facts: no
tasks:
- set_fact:
- install: "{{ install }}"
- network: "{{ network }}"
- vm_host: "{{ vm_host }}"
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
+ vm_host: "{{ vm_host | default({}) }}"
- import_playbook: ../common/vm-install.yml