summaryrefslogtreecommitdiff
path: root/dan/vm-deploy.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-01-04 14:39:23 +0100
committerChristian Pointner <equinox@spreadspace.org>2022-01-04 14:39:23 +0100
commitc3df634ef65332b68a509c4651a0eb8657642321 (patch)
treea8555a07e1490f15cbd0b09f03f2f0c9d956f135 /dan/vm-deploy.yml
parentsensor: i2c bus detection using regex for name (diff)
parentadd some todo docs (diff)
Merge branch 'topic/openwrt-vm'
Diffstat (limited to 'dan/vm-deploy.yml')
-rw-r--r--dan/vm-deploy.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/dan/vm-deploy.yml b/dan/vm-deploy.yml
new file mode 100644
index 00000000..33268b6d
--- /dev/null
+++ b/dan/vm-deploy.yml
@@ -0,0 +1,18 @@
+---
+- name: generate os image
+ hosts: "{{ install_hostname }}"
+ connection: local
+ gather_facts: no
+ roles:
+ - role: "{{ install_distro }}/image"
+
+- name: cook variables for host
+ hosts: "{{ install_hostname }}"
+ gather_facts: no
+ tasks:
+ - set_fact:
+ install: "{{ install | default({}) }}"
+ network: "{{ network | default({}) }}"
+ vm_host: "{{ vm_host | default({}) }}"
+
+- import_playbook: ../common/vm-deploy.yml