summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chaos-at-home/ch-pan.yml13
-rw-r--r--inventory/host_vars/ch-pan.yml31
2 files changed, 44 insertions, 0 deletions
diff --git a/chaos-at-home/ch-pan.yml b/chaos-at-home/ch-pan.yml
new file mode 100644
index 00000000..f0bac40c
--- /dev/null
+++ b/chaos-at-home/ch-pan.yml
@@ -0,0 +1,13 @@
+---
+- name: Basic Setup
+ hosts: ch-pan
+ roles:
+ - role: apt-repo/base
+ - role: core/base
+ - role: core/sshd/base
+ - role: core/zsh
+
+# - name: Payload Setup
+# hosts: ch-pan
+# roles:
+# - role: network/bind
diff --git a/inventory/host_vars/ch-pan.yml b/inventory/host_vars/ch-pan.yml
new file mode 100644
index 00000000..624743bc
--- /dev/null
+++ b/inventory/host_vars/ch-pan.yml
@@ -0,0 +1,31 @@
+---
+install:
+ vm:
+ memory: 2G
+ numcpus: 2
+ autostart: True
+ disks:
+ primary: /dev/sda
+ scsi:
+ sda:
+ type: zfs
+ name: root
+ size: 10g
+ interfaces:
+ - bridge: br-public
+ name: primary0
+ mac: 52:54:00:02:f5:a1
+
+network:
+ nameservers: "{{ vm_host.network.dns }}"
+ domain: "{{ host_domain }}"
+ systemd_link:
+ interfaces: "{{ install.interfaces }}"
+ primary: &_network_primary_
+ name: primary0
+ address: "{{ vm_host.network.bridges.public.prefix | ansible.utils.ipaddr(vm_host.network.bridges.public.offsets[inventory_hostname]) }}"
+ gateway: "{{ vm_host.network.bridges.public.gateway }}"
+ address6: "{{ vm_host.network.bridges.public.prefix6 | ansible.utils.ipaddr(vm_host.network.bridges.public.offsets6[inventory_hostname]) }}"
+ gateway6: "{{ vm_host.network.bridges.public.gateway6 }}"
+ interfaces:
+ - *_network_primary_